June 2011
Intermediate to advanced
590 pages
19h 31m
English
Not all layers are implicit layers. You can create a layer by sending alloc to the class CALayer. Layers created this way are called explicit layers. In this section, you’re going to create a layer and then make it a sublayer of the layer of your HypnosisView (Figure 22.3).
Figure 22.3 Object diagram

In HypnosisView.h, import the QuartzCore framework and add an instance variable to hold on to the layer object you are about to create:
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
@interface HypnosisView : UIView {
CALayer ...Read now
Unlock full access