取消UITableViewCell的选中状态

设置cell的选中属性为如下就没有点击效果了

cell.selectionStyle = UITableViewCellSelectionStyleNone;


只需要在- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath中加入一行代码就可以了[tableView deselectRowAtIndexPath:indexPath animated:YES];然后再写你其他代码就可以了

全选 复制 放进笔记
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];// 取消选中
    //其他代码
}

你可能感兴趣的:(UITableViewCell)