我有一个包含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
答案 0 :(得分:1)
我在您的实施中没有看到tableView:willDisplayCell:forRowAtIndexPath:
。您通常在此方法中设置单元格的显示值。
当您使用dequeueReusableCellWithIdentifier
(并且几乎总是应该)时,在滚动表格视图时将重复使用您的单元格。如果你没有在willDisplayCell
中更新它们的值,那么它们将在重用之前显示它们之前拥有的任何值(如果有的话)。