首页 > 其他 > 详细

关于tableView中的细节

时间:2015-12-14 22:47:30      阅读:202      评论:0      收藏:0      [点我收藏+]

这里总结一些tableview中的不经常使用的Tips

1.设置分区各分分区的title

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

2.设置索引(就是左边的那一小列)

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

注意:返回值是数组,要将索引存到数组里

3.设置点击cell后取消被选状态

>方法1:比较麻烦的方法  

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

    [tableView deselectRowAtIndexPath:indexPath animated:YES];

}

这个方法的显示效果是在选中后,又明显的选中操作,之后消失的

>方法2:设置属性

cell.selectionStyle=UITableViewCellSelectionStyleNone;

设置后,选中和没选中的UI效果是一样的

4.未完待续

 

关于tableView中的细节

原文:http://www.cnblogs.com/zhao-jie-li/p/5046513.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!