0

我有一个包含 UITextField 的自定义 UITableViewCell 原型。在最后一部分填充 UITextField 时,我会自动添加新单元格。如果有更多的部分不适合一个屏幕,我添加了另一个,它会被第一部分的值填充,并且第一部分的输入被清空!

截图:

第一步

添加了第四行 - 它包含一个!

第一行是空的!

相关代码:

@implementation TMNewTripPeopleViewController

@synthesize sectionsCount = _sectionsCount;
@synthesize firstCellShowed = _firstCellShowed;

- (int) sectionsCount
{
    if (_sectionsCount == 0) {
        _sectionsCount = 1;
    }
    return _sectionsCount;
}

- (IBAction)inputChanged:(id)sender {
    UITextField* input = (UITextField*) sender;
    NSIndexPath* indexPathName = [NSIndexPath indexPathForRow:0 inSection:input.tag - 1];
    UITableViewCell* cellName = [self.tableView cellForRowAtIndexPath:indexPathName];

    if (input == [cellName viewWithTag:input.tag]) {
        // last name input - add next section?
        if (input.tag == self.sectionsCount) {
            if (input.text.length > 0) {
                self.sectionsCount++;
                [self.tableView insertSections:[NSIndexSet indexSetWithIndex:self.sectionsCount - 1] withRowAnimation:UITableViewRowAnimationTop];
            }
        }
    }

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return self.sectionsCount;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return 2;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *CellIdentifier = @"PersonName";
    if (indexPath.row % 2 == 1) {
        CellIdentifier = @"PersonEmail";
    }
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    UITextField* input = (UITextField*) [cell viewWithTag:indexPath.section + 1];
    if (indexPath.row == 0 && indexPath.section == 0 && !self.firstCellShowed) {
        [input becomeFirstResponder];
        self.firstCellShowed = YES;
    }

    [cell viewWithTag:1].tag = indexPath.section + 1;

    return cell;
}

@end
4

1 回答 1

1

我没有tableView:willDisplayCell:forRowAtIndexPath:在您的实施中看到。您通常在此方法中设置单元格的显示值。

当您使用dequeueReusableCellWithIdentifier(并且您几乎总是应该)使用时,您的单元格将在表格视图滚动时被重用。如果您不更新它们的值,willDisplayCell那么它们将显示它们在重用之前具有的任何值(如果有的话)。

于 2012-07-08T12:56:43.367 回答