Cela me rend fou! J'ai un UICollectionViewController comme indiqué ci-dessous:
class PhrasesCompactCollectionViewController: UICollectionViewController
Le numberOfSections et cellForItemAt sont appelés, mais la sizeForItemAtIndexPath n'est jamais appelée. Je suis en utilisant le même code quelque part d'autre et il déclenche correctement. J'utilise Xcode Beta 8 6.
func collectionView(collectionView: UICollectionView,
layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSize(width: 120, height:120)
}