这快把我逼疯了! 我有一个 UICollectionViewController,如下所示:
class PhrasesCompactCollectionViewController: UICollectionViewController
正在调用 numberOfSections 和 cellForItemAt,但从未调用 sizeForItemAtIndexPath。我正在其他地方使用相同的代码,它正确地触发。我用的是 Xcode 8 Beta 6。
func collectionView(collectionView: UICollectionView,
layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSize(width: 120, height:120)
}