我正在使用sectionIndexTitlesForTableView在UITableView中显示索引。它工作正常,但我使用相同的TableView来显示我不需要这个索引的东西。那么,问题是如何删除sectionIndex?
答案 0 :(得分:0)
使用BOOL
值来跟踪您正在使用的显示(第一个或第二个)并执行类似的操作(isDisplayingFirst
是布尔值):
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
if (isDisplayingFirst) {
// return your section index titles
}
return nil; // otherwise return nothing
}