UITableView SectionIndexTitlesForTableView没有拆分?

时间:2013-03-04 23:51:29

标签: ios objective-c uitableview

PLZ需要一些帮助,这里的SectionTitles不分裂吗?它看起来像图像:

enter image description here

1 个答案:

答案 0 :(得分:0)

问题在于numberOfRowsInSection:。您需要具有数组结构的数据结构。外部数组应该为每个部分都有一个条目。内部数组将包含该部分的行。

那就像是:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    NSArray *rowData = listData[section];

    return rowData.count;
}

当然,您需要更新其他表视图数据源方法来处理此更新的数据结构。