2

我的问题如下:我将一个可变数组分配给它,cellForRowAtIndexPath以便它在一个单元格中显示每个数组对象。到目前为止一切顺利,单元格按预期显示。现在我想在第一个单元格中显示(根据条件)a UILabel,以便其他可变数组对象将转移到第二个单元格和第三个单元格等。问题是,当我测试该条件时,它是true,UILabel显示在第一个单元格中,第一个 object。所以实际上,两个元素在同一个单元格中,这不是我所期望的。我希望(当条件为真时)移动所有元素,以便它们从第二个单元格显示,以便将第一个单元格留给UIlabel.

我的相关代码没有给我我的期望,是这样的:

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


     UITableViewCell *cell = [_tableView dequeueReusableCellWithIdentifier:@"any-cell"];


 // Add and display the Cell     
      cell.tag = [indexPath row];
      NSLog(@"cell.tag= %i",cell.tag);
      //test the condition, if it's ok, then add the label to the first cell
      if ([self isNoScoreLabelDisplayed] && cell.tag==0) {
        UILabel *lbl=[[UILabel alloc]initWithFrame:CGRectMake(0, 0, 220, 50)];
        [lbl setBackgroundColor:[UIColor greenColor]];
        [cell addSubview:lbl];
      }
    cell.tag = [self isNoScoreLabelDisplayed]?[indexPath row]+1:[indexPath row];//here i wanted to shift the tags in case the condition is true, so that all the elements will be displayed from the second cell. But seems not doing what i want :(


      //
      if (indexPath.row < cellList.count) {

            [cell addSubview:[cellList objectAtIndex:[indexPath row]]];//cellList is the mutable array from which i get all the elements to display in the cells

      }else{

            [cell addSubview:nextButton];
      }


      return cell;
}

我的逻辑是否遗漏了什么?提前谢谢。

4

4 回答 4

1

您将 indexPath.row 直接与模型索引相关联,此时它们应该为“标题”单元格偏移。

if (indexPath.row && (indexPath.row - 1) < cellList.count) {
            [cell addSubview:[cellList objectAtIndex:indexPath.row - 1]];
} else {
于 2012-07-13T07:42:40.907 回答
1

我会为此使用两个单元格标识符,一个用于 LabelCell,一个用于常规 ArrayCell,这将为您清除问题,并且您不会获得带有标签和对象的单元格。

另外我真的不知道你在做什么,但看起来你每次都向一个单元格添加子视图,但你不会在任何地方删除它们。不要忘记细胞被重复使用......

于 2012-07-13T07:55:19.643 回答
1

嗨,在我看来,您检查标签条件然后在 mutablearray 中添加相同的对象,因为第一行的 indexPath.row==0 < cell.count。

cell.tag = [self isNoScoreLabelDisplayed]?[indexPath row]+1:[indexPath row];//here i wanted to shift the tags in case the condition is true, so that all the elements will be displayed from the second cell. But seems not doing what i want :(

因此,如果您必须显示标签,上面的代码只需将您的单元格标记设置为 indexpath.row + 1,但下面的代码(记住第一次 indexPath.row == 0,因此即使您显示标签)添加相同的数组对象:-)

if (indexPath.row < cellList.count) 
于 2012-07-13T08:00:15.170 回答
0

您可以将标签的文本作为第一个元素插入容器中并检查它。这样,您将节省对索引偏移和代码进一步复杂性的任何需求。

例如

[cellList insertObject:@"Label name" atIndex:0];
if ([cell tag] == 0) {
    // add required label
}
else {
    // do whatever you do for your standard cells, getting them with [cellList objectAtIndex:[indexPath row]];
}
于 2012-07-13T07:42:39.620 回答