美文网首页
iOS14 Cell上添加collectionView、tabl

iOS14 Cell上添加collectionView、tabl

作者: Smallwolf_JS | 来源:发表于2020-09-24 15:41 被阅读0次

iOS14更新之后出现了个问题
之前UITableViewCell上添加了UICollectionView
线上的可以相应,估计是Xcode12之前的编译器搞出来的包是没有问题的
但是在iOS14的设备上

[self addSubview:self.collectionView];

这么添加是不可以的
需要添加到cell的contentView上

[self.contentView addSubview:self.collectionView];
或者
[self.contentView addSubview:self.tableView];

是不是治你不乖乖的把view添加到contentView上?

相关文章

网友评论

      本文标题:iOS14 Cell上添加collectionView、tabl

      本文链接:https://www.haomeiwen.com/subject/miazyktx.html