我想像这样构建一个 UITableView(请注意该屏幕截图中的灰色单元格(S,T,W)):
. 那是两个自定义单元格吗?或者有没有其他提示?
这些行是节标题。见titleForHeaderInSection
这里。
这是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";
}