首页 > 代码库 > UITableView细节

UITableView细节

1.取消选中这行 [tableView deselectRowAtIndexPath:indexPath animated:YES];
2.去掉tableView的分割线(ios7)
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
3.去掉cell的背景色(白色),整一个cell都有个白色。(ios7)
self.tableView.backgroundColor = [UIColorclearColor];
4.让一行cell不能被选中
cell.selectionStyle = UITableViewCellSelectionStyleNone