我的问题如下:我将一个可变数组分配给它,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;
}
我的逻辑是否遗漏了什么?提前谢谢。