SBSearchViewController
' UITableView
的委托和dataSource是SBSearchViewController
@interface SBSearchViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, ...>
我定义了
-(id)sectionIndexTitlesForTableView:(id)arg1;
-(int)tableView:(id)arg1 sectionForSectionIndexTitle:(id)arg2 atIndex:(int)arg3;
然而,该表仍未编入索引。从不调用上述两种方法。我错过了什么?还有另一种显示表索引的方法吗?
答案 0 :(得分:0)
您需要%new
-(id)sectionIndexTitlesForTableView:(id)arg1;
-(int)tableView:(id)arg1 sectionForSectionIndexTitle:(id)arg2 atIndex:(int)arg3;
方法以使索引工作。默认情况下不会调用它们,因此您无法覆盖它们。然后,您将需要设置索引样式,因为它是默认的白色(没有模糊等)。