이것은 나를 미치게 만든다! 아래와 같이 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)
}
