How is the presentation layer of a CALayer generated?
- by KJ
Hi,
I'm having difficulties animating my custom layer property using Core Anmiation.
My question is how the presentation of a CALayer is generated.
Here is what I have now:
@interface MyLayer : CALayer {
NSMutableDictionary* customProperties;
}
@property (nonatomic, copy) NSMutableDictionary* customProperties;
@end
And…