蘋果公司的代碼注釋上寫的: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上將會(huì)導(dǎo)致添加的視圖手勢(shì)吏砂,點(diǎn)擊事件無(wú)法生效,親測(cè)有效。
http://www.reibang.com/p/4b6bf3e37edc
iOS 14 UITableViewCell 長(zhǎng)按手勢(shì) UILongPressGestureRecognizer 不生效的問題最近碰到一個(gè)添加到 cell 的長(zhǎng)按手勢(shì)不生效,diff 了一下,發(fā)現(xiàn) 在 iOS 14 UITableViewCellContentView 相比 iOS 13 多了一個(gè)手...