我想像这样构建一个UITableView(请注意该截图中的灰色单元格(S,T,W)):
。 这是两个定制单元吗?或者还有其他提示吗?
答案 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";
}