यह मुझे पागल बना रहा है! मेरे पास एक UICollectionViewController है जैसा कि नीचे दिखाया गया है:
class PhrasesCompactCollectionViewController: UICollectionViewController
NumberOfSections और cellForItemAt कहा जा रहा है, लेकिन sizeForItemAtIndexPath कभी नहीं कहा जाता है। मैं कहीं और उसी सटीक कोड का उपयोग कर रहा हूं और यह सही ढंग से फायर करता है। मैं Xcode 8 बीटा 6 का उपयोग कर रहा हूं।
func collectionView(collectionView: UICollectionView,
layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSize(width: 120, height:120)
}
