Bu beni deli ediyor! Aşağıda gösterildiği gibi bir UICollectionViewController'ım var:
class PhrasesCompactCollectionViewController: UICollectionViewController
NumberOfSections ve cellForItemAt çağrılıyor, ancak sizeForItemAtIndexPath hiçbir zaman çağrılmaz. Aynı kodu başka bir yerde kullanıyorum ve doğru şekilde ateşleniyor. Xcode 8 Beta 6 kullanıyorum.
func collectionView(collectionView: UICollectionView,
layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSize(width: 120, height:120)
}
