返回具有不同单元标识符的单元

时间:2015-02-26 20:45:10

标签: ios objective-c uitableview custom-cell

我有一个包含多个单元标识符的自定义单元格。我尝试了以下代码:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 2;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{    
    NSString *cellID;
    switch ([indexPath section]) {
        case 0:
            cellID = @"firstCell";
            break;
        case 1:
            cellID = @"secondCell";
            break;

        default:
            break;
    }

    customCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID forIndexPath:indexPath];

    return cell;
 }

当我运行应用程序时,它会显示第一个单元格2次,即使在故事板中,也有2个单元格内部有不同的对象。

1 个答案:

答案 0 :(得分:1)

[indexPath section]真的是你想要的吗? 我想你想要[indexPath row]