重载函数:
-(NSArray *) sectionIndexTitlesForTableView: (UITableView *) tableView
{
//dict allKeys取出的key arr无顺序,需进行排序
NSArray *arr = [[self.words allKeys] sortedArrayUsingSelector:@selector(compare:)];
return arr;
}
时间: 2024-10-31 05:35:02
重载函数:
-(NSArray *) sectionIndexTitlesForTableView: (UITableView *) tableView
{
//dict allKeys取出的key arr无顺序,需进行排序
NSArray *arr = [[self.words allKeys] sortedArrayUsingSelector:@selector(compare:)];
return arr;
}