//返回索引数组
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
return _letterMutaleArray;
}
//返回每个索引的内容
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
//响应点击索引时的委托方法
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index;
//更改索引的背景颜色:
self.tableView.sectionIndexBackgroundColor = [UIColor clearColor];
//更改索引的文字颜色:
self.tableView.sectionIndexColor = [UIColor blueColor];