1

我根本不明白如何从那里解决这个问题。

这很简单,我在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...

}
4

3 回答 3

2

初始化后,您不必删除单元格内容,它们永远不会重新创建,它们会被重用,因此您的代码应如下所示

-(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];
    }


}

我假设你想在你的单元格上有一些控件,在这种情况下,你可以尝试使用 CustomCell 来创建初始化时的所有子视图。

通常,你所有的初始化都应该在

if (!cell)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        //ALL INITS
    }

在它之外,您应该更新添加到单元格中的值..

于 2013-08-12T09:26:39.480 回答
-1

您需要将输入的文本设置回文本字段,目前在重复使用单元格时,文本字段会清除内容。如果字符串具有有效值,您可以尝试将文本字段输入存储在 nsstring 属性和 cellforrow 方法中,将文本字段文本设置为该字符串。这样,即使在滚动时,文本字段也只会显示从文本字段存储到 nsstring 属性中的用户输入。

于 2013-08-12T09:29:45.463 回答
-1

在您遵循我的答案之前,我想告诉您以下代码对内存管理不利,因为它会为 的每一行创建新单元格UITableView,因此请小心。

但是最好使用,当UITableView行数有限时(大约 50-100 行),那么下面的代码对您的情况很有帮助。使用它,如果它适合你。

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    NSString *CellIdentifier = [NSString stringWithFormat:@"S%1dR%1d",indexPath.section,indexPath.row];
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if(cell == nil)
    {
        cell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

         /// Put your code here.
     }

      /// Put your code here.

    return cell;
}

如果您的行数有限,那么这是最适合您的代码。

于 2013-08-12T09:37:50.500 回答