- UItableview 嵌套UIcollectionview 遇
- UITableView嵌套UICollectionView,UI
- Xcode12--iOS14--UITableView不能点击
- UITableView 嵌套 UICollectionView
- iOS: UITableView中嵌套UICollectionV
- UITableView 嵌套UICollectionView 仿
- UITableView(UICollectionView)嵌套U
- iOS13 scrollview 嵌套内textfield引发的
- iOS解决UICollectionView下嵌套UITableV
- UITableView中嵌套UICollectionView自动
UIcollectionview嵌套进UItableviewCell时,如果按照UItableview的reloaddata,并不能获取获取正确的contentSize,因为UIcollectionview的contentsize还跟uicollectionviewFlowLayout有关系。尤其是你嵌套的collectionview是多section时,就会出现多出来一部分空白。
我是这么处理的,请大神指教
[self.collectionView.collectionViewLayout invalidateLayout]; /// invalidate之前的layout,这个很关键
[self.collectionView reloadData]; ///
[self.collectionView setNeedsLayout]; ///
[self.collectionView layoutIfNeeded]; ///
这样就自动撑开tableviewCell了
网友评论