美文网首页
iOS中UITableView的右侧索引设置的一些方法

iOS中UITableView的右侧索引设置的一些方法

作者: Happy晓哥 | 来源:发表于2017-07-21 14:31 被阅读499次

主要是实现下面四个方法:

//返回section中的row

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

//返回每个索引的内容

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

//返回索引数组

- (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView

//响应点击索引时的委托方法

- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index;

当然在UITableView中还有关于索引的相关属性设置如下:

 _tableView.sectionIndexColor = [UIColor blueColor];//设置默认时索引值颜色
 _tableView.sectionIndexTrackingBackgroundColor = [UIColor grayColor];//设置选中时,索引背景颜色
 _tableView.sectionIndexBackgroundColor = [UIColor clearColor];// 设置默认时,索引的背景颜色

相关文章

网友评论

      本文标题:iOS中UITableView的右侧索引设置的一些方法

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