我正在尝试实现一个 tableView 设置,我在其中一个接一个地显示具有不同内容的多个单元格。我正在使用的代码是
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"ScribbleCell";
static NSString *simpleTableIdentifier2 = @"ScribbleCell2";
static NSString *simpleTableIdentifier3 = @"ScribbleCell3";
UITableViewCell *cell = nil;
//UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; // or you have the previous 'None' style...
self.tableView.separatorColor = [UIColor clearColor];
if (indexPath.row % 3 == 0) {
// this is a content cell
cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
// get the model index
NSInteger indexInModel = indexPath.row / 3;
NSDictionary *scribble = [scribbles objectAtIndex:indexInModel];
cell.textLabel.text = scribbles[@"name"];
}
else if(indexPath.row % 2 == 0) {
// red color
cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier2];
if(cell == nil)
{
cell = [[[NSBundle mainBundle] loadNibNamed:@"ScribbleCell2" owner:self options:nil] objectAtIndex:0];
}
}else{
// green color
cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier3];
if(cell == nil)
{
cell = [[[NSBundle mainBundle] loadNibNamed:@"ScribbleCell3" owner:self options:nil] objectAtIndex:0];
}
}
return cell;
}
理想的顺序应该是,名称然后是红色,然后是绿色,但似乎并非如此。当我向下滚动时,顺序似乎是随机的并且会发生变化。