I turned on:
#import "QuartzCore/QuartzCore.h"
but when I try to build, I get the error mentioned in the header. Is there anything else I need to do to tell Xcode to enable the framework?
The code in which I use it:
CALayer *layer = paperView.layer;
CATransform3D rotation = CATransform3DMakeRotation(1, 0, 0, 1);
source
share