标签: ios uitableview
我知道如何使用
UITableViewCell
cell.selectionStyle = UITableViewCellSelectionStyleNone
但它禁止所有“按下”响应从其中查看...有没有办法只删除选择颜色?
致以最诚挚的问候,
答案 0 :(得分:4)
我根据Pratik的评论得到了答案。使用此代码仅删除选择颜色。
cell.selectedBackgroundView = [[UIView alloc] init];