动态删除SectionIndex

时间:2010-07-02 21:35:27

标签: iphone objective-c cocoa

我正在使用sectionIndexTitlesForTableView在UITableView中显示索引。它工作正常,但我使用相同的TableView来显示我不需要这个索引的东西。那么,问题是如何删除sectionIndex?

1 个答案:

答案 0 :(得分:0)

使用BOOL值来跟踪您正在使用的显示(第一个或第二个)并执行类似的操作(isDisplayingFirst是布尔值):

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
   if (isDisplayingFirst) {
      // return your section index titles
   } 
   return nil; // otherwise return nothing
}