4

我正在分组的表格视图中制作表格。在这种形式中,我有 UIswitches 和文本字段。但向下滚动后,单元格样式正在发生变化。

这是我的 cellForRowAtIndex

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = nil;
    static NSString *MyIdentifier = @"GenericCell";
    cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier] ;
    }
        NSString *text = nil;

    if(indexPath.section == CREDENTIALS_SECTION){
        if (indexPath.row == 0) {
            NSLog(@"tot hier login");
            UITextField *login = [[UITextField alloc] initWithFrame:CGRectMake(110, 10, 185, 30)];
            login.adjustsFontSizeToFitWidth = YES;
            login.placeholder = @"example@gmail.com";
            login.keyboardType = UIKeyboardTypeEmailAddress;
            login.returnKeyType = UIReturnKeyNext;
            login.backgroundColor = [UIColor clearColor];
            login.tag = 0;
            login.delegate = self;

            [login setEnabled: YES];

            [cell addSubview:login];
        }else if (indexPath.row == 1){
            NSLog(@"tot hier pass");
            UITextField *pass = [[UITextField alloc] initWithFrame:CGRectMake(110, 10, 185, 30)];
            pass.adjustsFontSizeToFitWidth = YES;
            pass.placeholder = @"Required";
            pass.keyboardType = UIKeyboardTypeDefault;
            pass.returnKeyType = UIReturnKeyDone;
            pass.secureTextEntry = YES;

            pass.backgroundColor = [UIColor clearColor];
            pass.tag = 0;
            pass.delegate = self;
            [cell addSubview:pass];
        }

        if (indexPath.row == 0) { // Email
            text = @"Email";
        }
        else if(indexPath.row == 1) {
            text = @"Password";
        }
    }else  if(indexPath.section == METHODS_SECTION){
        UISwitch *toggleSwitch = [[UISwitch alloc]initWithFrame:CGRectMake(220, 10, 100, 30)];
        toggleSwitch.tag = indexPath.row;
        [toggleSwitch addTarget:self action:@selector(toggleSwitched:) forControlEvents:UIControlEventValueChanged];
        [cell addSubview:toggleSwitch];

        if (indexPath.row == 0) { // Web
            text = @"Web applicatie";
        }
        else if(indexPath.row == 1) { //Mobile
            text = @"Mobiele applicatie";
        }
        else if(indexPath.row == 2) { //Mail
            text = @"E-mail";
        }


    }else  if(indexPath.section == PHONE_SECTION){
        UITextField *phoneText = [[UITextField alloc] initWithFrame:CGRectMake(20, 10, 185, 30)];
        phoneText.adjustsFontSizeToFitWidth = YES;
        phoneText.font = [UIFont fontWithName:@"Arial-BoldMT" size:18];
        phoneText.keyboardType = UIKeyboardTypeNumberPad;
        phoneText.delegate = self;
        phoneText.textColor = [UIColor blackColor];
        phoneText.text = _person.phone;
        [cell addSubview:phoneText];


    }else  if(indexPath.section == REMARK_SECTION){
        UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(20, 10, 280, 260)];
        textView.text = _person.remark;
        textView.delegate = self;
        textView.font = [UIFont fontWithName:@"Arial" size:15.0];
        textView.backgroundColor = [UIColor clearColor];

        [cell addSubview:textView];
        text = @"";


    }else  if(indexPath.section == BUTTON_SECTION){
        cell.backgroundColor = [UIColor redColor];
        text = @"test";

    }
    cell.textLabel.text = text;
    return cell;
}

经过一番搜索,我发现更多人有这个问题。问题在于这段代码。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = nil;
    static NSString *MyIdentifier = @"GenericCell";
    cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier] ;
    }
        NSString *text = nil;

但我没有找到解决方案。希望任何人都可以提供帮助!

亲切的问候!

澄清

好的,所以在这里您可以看到我的表格的屏幕截图。下面我有一个红色的单元格(保存按钮),当我向下滚动时,其他单元格的背景是红色的。有些单元格,文本属性正在发生变化。 在此处输入图像描述

4

6 回答 6

3

那是行不通的。显然你还没有完全理解重用机制是如何工作的。

你做什么工作?首先,您获取要重新使用的单元格。如果你得到一个 - 到目前为止,但问题来了。如果你没有得到一个,那么你创建一个新的。

当你创建了一个新的,这是在用户开始滚动之前开始的情况,然后你根据部分和行添加一些 UIItems。我将解释为什么这实际上不是一件明智的事情。

然后用户滚动。细胞将从屏幕上消失,然后可供重复使用。然后,您将获取单元格以供重复使用。但是很可能这些单元格上已经有额外的 UI 项,因为您以前以这种方式使用过它们。在接下来的过程中,您将添加新的 UI 项,无论该单元格上是否已经存在其他 UI 项。

你能做什么:

  1. 创建您自己的自定义表格单元子类。您可能需要的每组附加 ui 项的一个子类。这可能是最简洁的方法。对于每个子类,使用不同的重用标识符(!!!)这是我推荐的!但是,还有其他选择:

  2. 您仍然可以接受您的概念,但为每种类型的单元格发明一种单独类型的重用标识符,这些单元格上有某种类型的附加 ui 项。如果是这样,请确保这些 UI 项仅在if (cell == nil)代码分支中创建和添加为子视图。只创建一次,然后重新使用它们。单元重用 ID 可以是“email-display”、“email-input”、“password-display”、“password-input”、“switch”……

  3. 上述解决方案的一个变化是,将行和部分计算为重用标识符。例如第 0 行和第 2 行的“cell-id-0.2” - 左右。但是您仍然必须确保您确实重用了额外的 UI 视图,并且不要在每次单元格充满数据时都重新创建它们。另外,第一部分的布局会根据您是要输入密码和电子邮件还是仅显示它们而有所不同。您仍然必须处理这些变化。

  4. 如果单元格 == nil - 表示如果一个单元格被重复使用 - 那么首先从您之前添加的每个 UI 项目中清除它。您可以通过在创建时以及在重用所有子视图并删除具有标签 99 的子视图时使用 - 比如说 99 - (任何不同于 0 的东西都应该做)标记您的 UIViews 来做到这一点。尽管如此,您可以坚持使用以下代码你已经做了。

于 2012-12-14T11:08:31.037 回答
2

最简单的解决方法是:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"GenericCell"] ;
    //some more code
    return cell;
}

这将删除 tableview 的可重用性,但由于它是一个有限的设置视图,它可以是好的。我仍然建议从 Hermann Klecker 的解决方案中选择 1 或 2。

于 2012-12-14T11:20:16.203 回答
1

如果您还需要保持 UIControl 状态,请使用

static NSString *MyIdentifier = [NSString stringWithFormat:@"GenericCell%d",indexPath.row];

它将始终返回您唯一的表格行,您可以根据需要使用它。

于 2012-12-14T11:00:40.887 回答
0

在重用之前尝试从单元格中删除所有子视图。试试代码:

if (cell == nil) 
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier] ;
}
else
{
   [cell.contentView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
}
于 2012-12-14T10:53:29.297 回答
0

在单元格上添加子视图之前删除所有子视图。

if (cell == nil)
{
      cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault    reuseIdentifier:SimpleTableIdentifier]autorelease];
}
else 
{
    //To remove the subview of cell.
    for (UIView *vwSubviews in [cell.contentView subviews])
    {
            [vwSubviews removeFromSuperview];
    }
}

它可能会解决您的问题。

于 2012-12-14T10:57:45.367 回答
0

实际上你这里有一些不好的代码。

在方法中

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

除非它不在,否则if (cell == nil)你不应该初始化和使用任何

-(void)addSubview:(UIView*)view 

为什么?

单元格是从 tableview 重用的视图。因此,如果您添加一些子视图,下次在重用单元格时,它将在其上添加更多子视图。只是它们重叠并可能导致 MEMORY LEAK。

不要忘记细胞是可重复使用的。所以;

如果我有以下代码,除非我没有在其他地方设置文本。预计所有单元格的文本标签中都有文本“这是一个文本”。因为它们是可重复使用的。

if (someChangingBool) {
   cell.textLabel.text = @"this is a text"; 
}

所以我需要一个 else 来设置文本。

欲了解更多信息

于 2012-12-14T11:00:28.813 回答