[iOS开发] tableView经常使用的到方法

//去掉多余的cell

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

//去掉底部横线

self.tableView.separatorStyle=UITableViewCellSeparatorStyleNone;

//设置tableview 不能滚动

self.tableView.scrollEnabled =NO; 


//tableView出现的时候,清除选中状态

如果是tableViewController

self.clearsSelectionOnViewWillAppear = YES;

如果是viewController,在viewWillAppear方法里添加

[self.tableView deselectRowAtIndexPath:[self.contactsTableViewindexPathForSelectedRow] animated:YES];


设置表格cell 右边箭头  


cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;  //显示最右边的箭头  

你可能感兴趣的:(tableview)