iOS 14

1、iOS 14 系统中在tableViewCell的初始化中添加subviews不能再使用:

[self addSubview: self.button];

上面的用法在iOS 14系统中,会导致self.button的层级位置在self与self.contentView之间,影响self.button的点击事件。应改为推荐的写法,将subviews添加到self.contentView上面。

[self.contentView addSubview: self.button];

.

你可能感兴趣的:(iOS 14)