UITableView Cell设置为禁止点击

方法一:

cell.userInteractionEnabled =NO;

方法二:

_tableView.allowsSelection=NO;

方法三:

1、cell.selectionStyle =UITableViewCellSelectionStyleNone;

2、didSelectRowAtIndexPath中不实现点击动作。

注意:如果cell上有添加Button,方法一和方法二Button的点击动作也会被忽略掉,方法三可以避免这个问题。


你可能感兴趣的:(UITableView Cell设置为禁止点击)