I have created new single view application (developing with iOS 5 sdk and Xcode 4.2), the app is now consisted of app delegate, view controller, scrollView (with CATiledLayer). Storyboard contains ViewController
that contains UIScrollView
which class is ScrollView
(class that I have created). My goal is to display large PDF files, with zooming and etc. I based my project on zooming pdf sample from apple. When I try to run my app on iPad it crashes during linking showing me this error:
Undefined symbols for architecture armv7:
"_OBJC_CLASS_$_CATiledLayer", referenced from:
objc-class-ref in TiledPDFPage.o
So does anyone know, how to avoid this error? Is it possible that the problem is in that I didnt create the scrollView in code but in storyboard??