苹果公司的代码注释上写的:should be added to the content view
// Custom subviews should be added to the content view.
@property (nonatomic, readonly, strong) UIView *contentView;
所以之前我们可以直接将视图添加在cell上:
[self addSubview:self.titleLabel];
而不是:
[self.contentView addSubview:self.titleLabel];
以后如果视图直接添加在cell上将会导致添加的视图手势,点击事件无法生效,亲测有效。
//www.greatytc.com/p/4b6bf3e37edc
iOS 14 UITableViewCell 长按手势 UILongPressGestureRecognizer 不生效的问题最近碰到一个添加到 cell 的长按手势不生效,diff 了一下,发现 在 iOS 14 UITableViewCellContentView 相比 iOS 13 多了一个手...