|
|
1
4
当搜索全部激活时,应禁用中的索引绘制。只需在委托中返回nil,如下所示: - (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
if ([self.searchDisplayController isActive]) return nil;
...
}
|
|
|
2
2
你可以尝试使用
这会刷新滚动条,希望还会刷新节索引? |
|
|
3
0
它工作得很好!!!
|