UITableViewCell--iOS中cell实现高亮的方法

思路是在选中某个cell的时候立即取消选中,代码如下:

1 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
2 {
3     [tableView deselectRowAtIndexPath:indexPath animated:YES];
4     
5     // 其他          
6 }
原文地址:https://www.cnblogs.com/lYcHeeM/p/4099729.html