自定义uitableviewcell与textfield消失

时间:2016-09-18 05:04:50

标签: ios objective-c uitableview

根据用户输入添加到tableview中的自定义文本字段单元格。当用户添加多个手机号码时,类似于联系簿的内容。 Nib使用下面的代码注册表视图。

[self.tableView registerNib:[UINib nibWithNibName:@"TextFieldTableViewCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:textFieldTableViewCellIdentifier];

添加动态单元格的方法:

-(void)addAccoladesValue
{
    NSMutableArray *DataArray =  [self.tableData[SectionTagAccolades-1][sectionDataKey] mutableCopy];
    NSMutableArray *DataValueArray =  [self.tableData[SectionTagAccolades-1][sectionDataValue] mutableCopy];
    self.accoladesArray = self.accoladesArray ? self.accoladesArray : [NSMutableArray new];
    TextFieldTableViewCell *accoladesCell = [self setupTextField:self.accoladesArray tag:TextFieldTagFirstName placeholder:@"Description" cellTextFieldIdentifier:textFieldTableViewCellIdentifier];
    accoladesCell.hidden = NO;
    [DataArray addObject:accoladesCell];
    [DataValueArray addObject:@""];
    self.tableData[SectionTagAccolades-1][sectionDataKey] = DataArray;
    self.tableData[SectionTagAccolades-1][sectionDataValue] = DataValueArray;
    [self.tableView beginUpdates];
    [self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:SectionTagAccolades-1]] withRowAnimation:UITableViewRowAnimationAutomatic];
    [self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:SectionTagAccolades-1]] withRowAnimation:UITableViewRowAnimationTop];
    [self.tableView endUpdates];
}

代码似乎可以预期,但有些时候单元格会消失,而且几次新添加的单元格会被添加到顶部,这是错误的。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    TextFieldTableViewCell *cell = (TextFieldTableViewCell*)self.tableData[indexPath.section][sectionDataKey][indexPath.row];
    if ([cell isKindOfClass:[TextFieldTableViewCell class]])
    {
        cell.textfield.tag = indexPath.row;
        cell.textfield.superview.tag = indexPath.section;
        cell.textfield.text = self.tableData[indexPath.section][sectionDataValue][indexPath.row];

    }
    cell.hidden = NO;
    [cell setNeedsUpdateConstraints];
    [cell setNeedsLayout];
    return cell;
}

你有什么可能的原因导致这种奇怪的行为?

1 个答案:

答案 0 :(得分:1)

我实际上可以发现很多可能在这里出错的事情。有几件事。

1。不要存储TableViewCells

您应该手动存储cellsUITableView会为您处理此问题。 UITableView将重复使用滚出视图的cells来显示新数据,因此可以与不同的objects相关联。

tableView:cellForRowAtIndexPath:上的dequeueReusableCellWithIdentifier:forIndexPath:调用tableView获取一个单元格,然后用它应显示的数据填充它。

2。数据结构

您的self.accoladesArray似乎包含应在TextFieldTableViewCells中显示的数据。为什么要继续引用此问题,一个instance property和一个self.tableData

如果你只保留实例属性,你的UITableViewDataSource方法将归结为

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
   // accolades section
   return self.accoladesArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView 
     cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   // accolades section
   TextFieldTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier: textFieldTableViewCellIdentifier forIndexPath: indexPath];
   NSString * text = self.accoladesArray[indexPath.row];
   // custom setup
   return cell;
}

- (void) addAccoladesValue
{
    if (!self.accoladesArray) self.accoladesArray = [NSMutableArray new]; 
    [self.tableView beginUpdates];
    {
        [self.accoladesArray insertObject: @"" atIndex: 0];
        [self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:SectionTagAccolades-1]] withRowAnimation:UITableViewRowAnimationAutomatic];
    }
    [self.tableView endUpdates];        
}