This is probably something really simple, but I had never used CAShapeLayers before, I imported this at the top:
import <QuartzCore / QuartzCore.h>
And the compiler does not complain, but the linker with this error:
"_OBJC_CLASS_$_CAShapeLayer", referenced from:
objc-class-ref in myClass.o
ld: symbol(s) not found for architecture armv7
What do I need to import to make this work ?, I use Xcode 4.2 and create for iPhone iOS 4.3.
source
share