美文网首页
UITableView 的一些小功能

UITableView 的一些小功能

作者: 斌小狼 | 来源:发表于2016-10-12 14:23 被阅读0次

//去除多余分割线

self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

[[UIView alloc] initWithFrame:CGRectZero]  这句话意思是隐藏,也可用于其它框架;

直接用[[UIView alloc] init] 也可实现此功能,但感觉上边写的牛B点/hx.

//点击不变色

cell.selectionStyle = UITableViewCellSelectionStyleNone;

//显示最右边的箭头

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

//实现点击第一列第一行的方法

[self.tableview didSelectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];

//设置选中第一行(默认有蓝色背景)

[self.tableview selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionTop];

相关文章

网友评论

      本文标题:UITableView 的一些小功能

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