我得到的阵列有一个,两个,三个,四个,五个。值.. 在我的数组....说countListArray。
我需要显示这个countlistarray有titleForHeaderInSection ....
每个部分我需要显示6个单元格......
答案 0 :(得分:3)
您需要实现表视图数据源和委托方法。
部分名称使用此
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
return [yourArray objectAtIndex:section];
}
答案 1 :(得分:0)
您只需要处理titleForRow:inSection消息。或者,你有任何问题吗?