ios取消uitableviewcell点击效果

来源:互联网 发布:高性价比耳麦知乎 编辑:程序博客网 时间:2024/05/16 05:49

第一步

在 cellForRowAtIndexPath 里添加

cell.selectionStyle = UITableViewCellSelectionStyleNone;

第二步

在点击cell方法里添加

    [theTableView deselectRowAtIndexPath:indexPath animated:YES];

这样就大功告成了