- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString*)title atIndex:(NSInteger)index {
return index;
}
//索引标题方法返回的是索引标题数组
- (NSArray*)sectionIndexTitlesForTableView:(UITableView*)tableView {
NSMutableArray *array = [NSMutableArray array];
for(int i = 0; i < 6; i ++) {
NSString *str = [NSStringstringWithFormat:@"第%d区",i];
[array addObject:str];
}
return array;
}