iOS 设置tableView右侧索引
作者:
iYeso | 来源:发表于
2017-04-12 17:51 被阅读2090次1.设置右侧索引字体颜色
self.tabView.sectionIndexColor = [UIColor blackColor];
2.设置右侧索引背景色
self.cityTabView.sectionIndexBackgroundColor =[UIColor blackColor];
3.显示每组标题索引
-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
4.返回每个索引的内容
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
5.响应点击索引时的委托方法
-(NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString*)title atIndex:(NSInteger)index
本文标题:iOS 设置tableView右侧索引
本文链接:https://www.haomeiwen.com/subject/asnmattx.html
网友评论