美文网首页
TableViewCell 点击效果

TableViewCell 点击效果

作者: WARRON | 来源:发表于2016-11-06 12:19 被阅读16次
//去除点击后的效果 有颜色消失的效果

//一
[tableView deselectRowAtIndexPath:indexPath animated:YES];

//二 没有颜色消失的效果
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
   // 2松开手颜色消息 可以自定制

[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

[tableView deselectRowAtIndexPath:indexPath animated:YES];

相关文章

网友评论

      本文标题:TableViewCell 点击效果

      本文链接:https://www.haomeiwen.com/subject/udtnuttx.html