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;
原文地址:http://www.cnblogs.com/yangyang1987/p/3746733.html