Điều này khiến tôi điên mất! Tôi có một UICollectionViewController như hình dưới đây:
class PhrasesCompactCollectionViewController: UICollectionViewController
NumberOfSection và cellForItemAt đang được gọi nhưng sizeForItemAtIndexPath không bao giờ được gọi. Tôi đang sử dụng cùng một mã chính xác ở một nơi khác và nó kích hoạt chính xác. Tôi đang sử dụng Xcode 8 Beta 6.
func collectionView(collectionView: UICollectionView,
layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSize(width: 120, height:120)
}