我希望在我的表视图中有两个不同的单元格。
例如:
有可能吗?我怎样才能做到这一点?
感谢。
答案 0 :(得分:0)
创建两个自定义UITableViewCell
并使用tableView和cellIdentifiers(如“CellType1”和cellType2)注册它们,然后在cellForRowAtIndexPath中执行类似的操作
- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellIdentifier = nil;
if(indexPath.row == 0)
{
// first row, return cell you want
cellIdentifier = @"CellType1";
}
else
{
// other rows you can return cell you want
cellIdentifier = @"CellType2";
}
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];
return cell;
}
答案 1 :(得分:-1)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath