PLZ需要一些帮助,这里的SectionTitles不分裂吗?它看起来像图像:
答案 0 :(得分:0)
问题在于numberOfRowsInSection:
。您需要具有数组结构的数据结构。外部数组应该为每个部分都有一个条目。内部数组将包含该部分的行。
那就像是:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSArray *rowData = listData[section];
return rowData.count;
}
当然,您需要更新其他表视图数据源方法来处理此更新的数据结构。