我根本不明白如何从那里解决这个问题。
这很简单,我在UITextField
我的UITableViewCell
. 用户可以输入它,然后在将其滚动并返回到视图后,内容将被重置回其默认状态。
这与重新使用旧电池有关dequeueReusableCellWithIdentifier
吗?我只是不明白如何解决它!
这是我的代码:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
//Stop repeating cell contents
else for (UIView *view in cell.contentView.subviews) [view removeFromSuperview];
//Add cell subviews here...
}