UITableView的索引

作者: any_where | 来源:发表于2015-11-30 14:13 被阅读422次

//返回索引数组

- (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];

相关文章

网友评论

    本文标题:UITableView的索引

    本文链接:https://www.haomeiwen.com/subject/anrjhttx.html