setting exclusiveTouch to custom UITableViewCell

后端 未结 1 1231
無奈伤痛
無奈伤痛 2021-01-21 18:56

I am trying to set the exclusiveTouch property to my custom UITableViewCell.

However, adding this code does not seem to work.

for (UIView *view in cell.         


        
相关标签:
1条回答
  • 2021-01-21 19:14

    Not sure but give it a try:

    cell.exclusiveTouch = YES
    cell.contentView.exclusiveTouch = YES
    
    0 讨论(0)
提交回复
热议问题