UITableView 的一些小功能

//去除多余分割线

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 的一些小功能)