これは私を夢中にさせています!以下に示すように、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)
}
