-1

I use PSTCollectionView in my app and it work great when I build with Xcode 4.6.3. But I cant build it with Xcode 5 because the following reason:

 error: Class Unavailable: UICollectionView on iOS versions prior to 6.0

Help me to fix this issue. Thanks a lot!

jacob
  • 1,024
  • 9
  • 14

1 Answers1

1

enter image description here

Please look at the above screenshot from Apple's documentation, which clearly says UICollectionView Only available iOS 6 and above.

I think you are having deployment target as < iOS6. That is the problem.Change it and try again

Updates:

I referred PSTCollectionView here which clearly mentions about your older version support. You should use PSUICollectionView instead of that. Refer the attached screenshot.

enter image description here