// 右邊索引的標題數組
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
NSMutableArray *array = [NSMutableArray array];
for(int section='A';section<='Z';section++)
{
[array addObject:[NSString stringWithFormat:@"%c",section]];
}
return array;
}
// 自定義索引與數組的對應關系
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index
{
return (index+1==26)?0:(index+1);
}