collectionViewContentSize

collectionViewContentSize

之间有什么区别
collectionViewController.collectionViewLayout.collectionViewContentSize()collectionViewController.collectionView.contentSize

你更喜欢使用什么?

最佳答案

collectionViewContentSize() 是一种您可以覆盖(在布局中)以动态生成大小的方法。contentSizecollectionView (或任何 UIScrollView ,就此而言)的属性,如果没有这样的覆盖,它将被使用。
它类似于 UITableViewrowHeightUITableViewDelegateheightForRowAtIndexPath()
另请注意(如评论中所述)“contentSizeUIScrollView 继承的属性,而 itemSizeUICollectionViewLayout 上的属性,它允许您为每个单元格指定毯子大小”。

10-06 02:13