如何在UITableView中创建“标题”单元格?

时间:2013-05-05 21:58:40

标签: ios uitableview

我想像这样构建一个UITableView(请注意该截图中的灰色单元格(S,T,W)): enter image description here

。 这是两个定制单元吗?或者还有其他提示吗?

2 个答案:

答案 0 :(得分:1)

这些行是节标题。请参阅titleForHeaderInSection here

答案 1 :(得分:1)

这是具有普通风格的UITableView的标准“标题”。

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {

    if (section == 20) return @"S";

    if (section == 21) return @"T";

    if (section == 22) return @"W";

    return @"Undefined";
}