美文网首页React Native开发经验集WEB前端程序开发
iOS开发 UITableView中cell嵌套UITextFi

iOS开发 UITableView中cell嵌套UITextFi

作者: 极客James | 来源:发表于2017-07-24 22:03 被阅读298次

    不喜欢说废话,如果你选择看这篇文章,那对tableView就有一定的了解,所以我也不多说了。在开发项目中遇到了一个问题,在自定义cell中添加了UITextField,可是在tableView来回滚动中,原来在UITextField中输入的数据居然不见了,下面就来分享下自己是如何解决的。

    整体思路:

    找到textField的代理方法先监听他的数据变化,然后通过字典把变化的数据和cell的行数进行绑定,因为cell复用他的每个cell的indexPah.row是不会变的,然后通过一个数组将字典里保存的key取出来每次重绘cell的时候进行判断,/如果字典中保存当前的值,那么直接从字典里取出值然后赋给UITextField的text就完美解决啦。

    代码实现:

    1.通过UITextField的代理方法
    在.h文件中
    #import "HWBaseCell.h"
    
    @interface HWTitleTextFieldCell : HWBaseCell
    
    @property (weak, nonatomic) IBOutlet UITextField *tfUrlBlock;
    
    @property (nonatomic, copy)void (^saveData)(NSString *text);
    
    @end
    
    
    在.m文件中
    -(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
        if (_saveData) {
            _saveData([textField.text stringByReplacingCharactersInRange:range withString:string]);
        }
        return YES;
    }
    
    
    2.在TableViewController中监听textField变化的值,并通过字典把变化的值和cell的indexPath.row进行一一对应
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    
        NSString *identifier = NSStringFromClass([HWTitleTextFieldCell class]);
        HWTitleTextFieldCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
        if (cell == nil) {
            Class cellClass = NSClassFromString(identifier);
            cell = [[cellClass alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
        }
        cell.saveData = ^(NSString *text){
            
            //将发生改变的textField的内容对应cell的行
            [self.dataDict setValue:text forKey:FStr(@"%ld",indexPath.row)];
        };
        
          // 取出存储所有textFileld改变对应的行
        NSArray *indexArr  = [self.dataDict allKeys];
        if ([indexArr containsObject:FStr(@"%ld",indexPath.row)]) {
       // 如果字典中保存当前的值,那么直接从字典里取出值然后赋给UITextField的text
            cell.tfUrlBlock.text = [self.dataDict objectForKey:FStr(@"%ld",indexPath.row)];
            } else {
                cell.tfUrlBlock.text =nil'
            return cell;
        }
    

    免费获取IT界4T开发资料

    第一步:

    微信关注:


    微信公众号
    第二步:

    回复关键字:我要资料

    获取资料

    相关文章

      网友评论

        本文标题:iOS开发 UITableView中cell嵌套UITextFi

        本文链接:https://www.haomeiwen.com/subject/jtjikxtx.html