-2

I am getting this error while running the application.Kindly provide some information on this error

dyld: Symbol not found: _OBJC_CLASS_$_UICollectionViewCell
Lithu T.V
  • 19,955
  • 12
  • 56
  • 101
swfusmie
  • 13
  • 2
  • See if [this answer](http://stackoverflow.com/a/2622027/834998) helps you. – Greg May 24 '13 at 09:26
  • IPHONEOS_DEPLOYMENT_TARGET is not set to iOS 5? – Lithu T.V May 24 '13 at 09:26
  • If you ask a question, it's generally helpful to see the relevant part of your code. If it's short, you can post it in your question. Otherwise, you can post a Gist on Github. Or you could even share your entire project (e.g. through Dropbox). – Maarten May 24 '13 at 09:28

1 Answers1

1

The problem may be with the IPHONEOS_DEPLOYMENT_TARGET make it proper in

Target->BuildSettings->IPHONEOS_DEPLOYMENT_TARGET 
Target->Summary->iOS Application Target.

UICollectionView & UICollectionViewCell is for iOS 6 and later and hence it may be set to lower version the error pops up

Lithu T.V
  • 19,955
  • 12
  • 56
  • 101