Reputation: 3052
I wish to run iOS 6 programs on my iOS 5.1.1 iPad 1st generation, and all the UICollectionView
s are all disappeared and debug console says
Unknown class collectionViewController in Interface Builder file
Is it because of incompatibility with UICollectionView
s in iOS 5?
Upvotes: 1
Views: 1423
Reputation: 108
Correct. According to the documentation for the UICollectionView class, its availability is marked as "Available in iOS 6.0 and later." which means it does not exist in iOS 5.
Upvotes: 3