| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/QuartzCore.framework  | 
| Availability | Available in Mac OS X v10.5 and later.  | 
| Declared in | CAConstraintLayoutManager.h CALayer.h CAScrollLayer.h CATransform3D.h  | 
| Companion guides | |
| Related sample code | 
CALayer is the model class for layer-tree objects. It encapsulates the position, size, and transform of a layer, which defines its coordinate system. It also encapsulates the duration and pacing of a layer and its animations by adopting the CAMediaTiming protocol, which defines a layer’s time space.
  frame  property
                    
                    			
                          bounds  property
                    
                    			
                          position  property
                    
                    			
                          zPosition  property
                    
                    			
                          anchorPoint  property
                    
                    			
                        – affineTransform
                    
                    			
                        – setAffineTransform:
                    
                    			
                          transform  property
                    
                    			
                          sublayerTransform  property
                    
                    			
                          contents  property
                    
                    			
                          contentsRect  property
                    
                    			
                        – display
                    
                    			
                        – displayLayer:  delegate method
                    
                    			
                        – drawInContext:
                    
                    			
                        – drawLayer:inContext:  delegate method
                    
                    			
                          opaque  property
                    
                    			
                        – isOpaque
                    
                    			
                          edgeAntialiasingMask  property
                    
                    			
                          minificationFilter  property
                    
                    			
                          magnificationFilter  property
                    
                    			
                          contentsGravity  property
                    
                    			
                          opacity  property
                    
                    			
                          hidden  property
                    
                    			
                        – isHidden
                    
                    			
                          masksToBounds  property
                    
                    			
                          doubleSided  property
                    
                    			
                        – isDoubleSided
                    
                    			
                          mask  property
                    
                    			
                          cornerRadius  property
                    
                    			
                          borderWidth  property
                    
                    			
                          borderColor  property
                    
                    			
                          backgroundColor  property
                    
                    			
                          backgroundFilters  property
                    
                    			
                          shadowOpacity  property
                    
                    			
                          shadowRadius  property
                    
                    			
                          shadowOffset  property
                    
                    			
                          shadowColor  property
                    
                    			
                          filters  property
                    
                    			
                          compositingFilter  property
                    
                    			
                          style  property
                    
                    			
                          sublayers  property
                    
                    			
                          superlayer  property
                    
                    			
                        – addSublayer:
                    
                    			
                        – removeFromSuperlayer
                    
                    			
                        – insertSublayer:atIndex:
                    
                    			
                        – insertSublayer:below:
                    
                    			
                        – insertSublayer:above:
                    
                    			
                        – replaceSublayer:with:
                    
                    			
                          layoutManager  property
                    
                    			
                        – setNeedsLayout
                    
                    			
                          constraints  property
                    
                    			
                        – addConstraint:
                    
                    			
                          name  property
                    
                    			
                          autoresizingMask  property
                    
                    			
                        – resizeWithOldSuperlayerSize:
                    
                    			
                        – resizeSublayersWithOldSize:
                    
                    			
                        – preferredFrameSize
                    
                    			
                        – layoutIfNeeded
                    
                    			
                        – layoutSublayers
                    
                    			
                          actions  property
                    
                    			
                        + defaultActionForKey:
                    
                    			
                        – actionForKey:
                    
                    			
                        – actionForLayer:forKey:  delegate method
                    
                    			
                        – convertPoint:fromLayer:
                    
                    			
                        – convertPoint:toLayer:
                    
                    			
                        – convertRect:fromLayer:
                    
                    			
                        – convertRect:toLayer:
                    
                    			
                        – convertTime:fromLayer:
                    
                    			
                        – convertTime:toLayer:
                    
                    			
                          delegate  property
                    
                    			
                        For more about Objective-C properties, see “Properties” in The Objective-C 2.0 Programming Language.
A dictionary mapping keys to objects that implement the CAAction protocol.
@property(copy) NSDictionary *actions
The default value is nil. See actionForKey: for a description of the action search pattern.
CALayer.hDefines the anchor point of the layer's bounds rectangle. Animatable.
@property CGPoint anchorPoint
Described in the unit coordinate space. Defaults to (0.5, 0.5), the center of the bounds rectangle.
See Layer Geometry and Transforms in Core Animation Programming Guide for more information on the relationship between the bounds, anchorPoint and position properties.
CALayer.hA bitmask defining how the layer is resized when the bounds of its superlayer changes.
@property unsigned int autoresizingMask
See “Autoresizing Mask” for possible values. Default value is kCALayerNotSizable.
CALayer.hSpecifies the background color of the receiver. Animatable.
@property CGColorRef backgroundColor
The default is nil.
CALayer.hAn optional array of CoreImage filters that are applied to the receiver’s background. Animatable.
@property(copy) NSArray *backgroundFilters
Once an array of filters is set properties should be modified by invoking setValue:forKeyPath: using the appropriate key path. This requires that you set the name of the background filter to be modified. For example: 
CIFilter *filter = ...;  | 
CALayer *layer = ...;  | 
filter.name = @"myFilter";  | 
layer.filters = [NSArray arrayWithObject:filter];  | 
[layer setValue:[NSNumber numberWithInt:1] forKeyPath:@"filters.myFilter.inputScale"];  | 
If the inputs of a background filter are directly modified after the filter is attached to a layer, the behavior is undefined.
While the CALayer class exposes this property, Core Image is not available in iPhone OS. Currently the filters available for this property are undefined.
CALayer.hThe color of the receiver’s border. Animatable.
@property CGColorRef borderColor
Defaults to opaque black.
CALayer.hSpecifies the width of the receiver’s border. Animatable.
@property CGFloat borderWidth
The border is drawn inset from the receiver’s bounds by borderWidth. It is composited above the receiver’s contents and sublayers and includes the effects of the cornerRadius property. The default is 0.0.
CALayer.hSpecifies the bounds rectangle of the receiver. Animatable.
@property CGRect bounds
The default is an empty rectangle.
See Layer Geometry and Transforms in Core Animation Programming Guide for more information on the relationship between the bounds, anchorPoint and position properties.
CALayer.hA CoreImage filter used to composite the receiver’s contents with the background. Animatable.
@property(retain) CIFilter *compositingFilter
If nil, the contents are composited using source-over. The default value is nil. 
Once a filter is set its properties should be modified by invoking setValue:forKeyPath: using the appropriate key path. For example: 
CIFilter *filter = ...;  | 
CALayer *layer = ...;  | 
layer.compositingFilter = filter;  | 
[layer setValue:[NSNumber numberWithInt:1] forKeyPath:@"compositingFilter.inputScale"];  | 
If the inputs of the filter are modified directly after the filter is attached to a layer, the behavior is undefined.
While the CALayer class exposes this property, Core Image is not available in iPhone OS. Currently the filters available for this property are undefined.
CALayer.hSpecifies the constraints used to layout the receiver’s sublayers when using an CAConstraintManager instance as the layout manager.
@property NSArray *constraints
See CAConstraintLayoutManager Class Reference for more information.
CAConstraintLayoutManager.hAn object that provides the contents of the layer. Animatable.
@property(retain) id contents
A layer can set this property to a CGImageRef to display the image as its contents. The default value is nil.
CALayer.hDetermines how the receiver's contents are positioned within its bounds.
@property(copy) NSString *contentsGravity
The possible values for contentsGravity are shown in “Contents Gravity Values”. The default value is kCAGravityResize.
CALayer.h A rectangle, in the unit coordinate space, defining the subrectangle of contents that  the receiver should draw. Animatable.
@property CGRect contentsRect
Defaults to the unit rectangle (0.0,0.0,1.0,1.0).
If pixels outside the unit rectangles are requested, the edge pixels of the contents image will be extended outwards.
If an empty rectangle is provided, the results are undefined.
CALayer.hSpecifies a radius used to draw the rounded corners of the receiver’s background. Animatable.
@property CGFloat cornerRadius
If the radius is greater than 0 the background is drawn with rounded corners. The default value is 0.0.
CALayer.hSpecifies the receiver’s delegate object.
@property(assign) id delegate
CALayer.hDetermines whether the receiver is displayed when facing away from the viewer. Animatable.
@property BOOL doubleSided
If NO, the layer is hidden when facing away from the viewer. Defaults to YES. 
CALayer.hA bitmask defining how the edges of the receiver are rasterized.
@property unsigned int edgeAntialiasingMask
For each of the four edges (left, right, bottom, top) if the corresponding bit is set the edge will be antialiased.
Typically, this property is used to disable antialiasing for edges that abut edges of other layers, to eliminate the seams that would otherwise occur.
The mask values are defined in “Edge Antialiasing Mask.”
CALayer.hAn array of CoreImage filters that are applied to the contents of the receiver and its sublayers. Animatable.
@property(copy) NSArray *filters
Defaults to nil. Filter properties should be modified by calling setValue:forKeyPath: on each layer that the filter is attached to. If the inputs of the filter are modified directly after the filter is attached to a layer, the behavior is undefined.
While the CALayer class exposes this property, Core Image is not available in iPhone OS. Currently the filters available for this property are undefined.
CALayer.hSpecifies receiver’s frame rectangle in the super-layer’s coordinate space.
@property CGRect frame
The value of frame is derived from the bounds, anchorPoint and position properties. When the frame is set, the receiver’s position and the size of the receiver’s bounds are changed to match the new frame rectangle.
See Layer Geometry and Transforms in Core Animation Programming Guide for more information on the relationship between the bounds, anchorPoint and position properties.
Note: The frame property is not directly animatable. Instead you should animate the appropriate combination of the bounds, anchorPoint and position properties to achieve the desired result.
CALayer.hDetermines whether the receiver is displayed. Animatable.
@property BOOL hidden
The default is NO.
CALayer.hSpecifies the layout manager responsible for laying out the receiver’s sublayers.
@property(retain) id layoutManager
The layoutManager must implement the CALayoutManager informal protocol. The default value is nil.
CALayer.hThe filter used when increasing the size of the content.
@property(copy) NSString *magnificationFilter
The possible values for magnificationFilter are shown in “Scaling Filters”. The default value is kCAFilterLinear.
CALayer.hAn optional layer whose alpha channel is used as a mask to select between the layer's background and the result of compositing the layer's contents with its filtered background.
@property(retain) CALayer *mask
 Defaults to nil. 
When setting the mask to a new layer, the new layer’s superlayer must first be set to nil, otherwise the behavior is undefined.
CALayer.hDetermines if the sublayers are clipped to the receiver’s bounds. Animatable.
@property BOOL masksToBounds
If YES, an implicit mask matching the layer bounds is applied to the layer, including the effects of the cornerRadius property. If YES and a mask property is specified, the two masks are multiplied to get the actual mask values. Defaults to NO.
CALayer.hThe filter used when reducing the size of the content.
@property(copy) NSString *minificationFilter
The possible values for minifcationFilter are shown in “Scaling Filters”. The default value is kCAFilterLinear.
CALayer.hThe name of the receiver.
@property(copy) NSString *name
The layer name is used by some layout managers to identify a layer. Defaults to nil.
CALayer.hReturns whether the receiver must be redisplayed when the bounds rectangle is updated.
@property BOOL needsDisplayOnBoundsChange
When YES,  setNeedsDisplay is automatically invoked when the receiver’s bounds is changed. Default value is NO.
CALayer.hDetermines the opacity of the receiver. Animatable.
@property float opacity
Possible values are between 0.0 (transparent) and 1.0 (opaque). The default is 1.0.
CALayer.hSpecifies a hint marking that the pixel data provided by the contents property is completely opaque.
@property BOOL opaque
Defaults to NO.
CALayer.hSpecifies the receiver’s position in the superlayer’s coordinate system. Animatable.
@property CGPoint position
The position is relative to anchorPoint. The default is (0.0,0.0).
See Layer Geometry and Transforms in Core Animation Programming Guide for more information on the relationship between the bounds, anchorPoint and position properties.
CALayer.hSpecifies the color of the receiver’s shadow. Animatable.
@property CGColorRef shadowColor
The default is opaque black.
CALayer.hSpecifies the offset of the receiver’s shadow. Animatable.
@property CGSize shadowOffset
The default is (0.0,-3.0).
CALayer.hSpecifies the opacity of the receiver’s shadow. Animatable.
@property float shadowOpacity
The default is 0.0.
CALayer.hSpecifies the blur radius used to render the receiver’s shadow. Animatable.
@property CGFloat shadowRadius
The default value is 3.0.
CALayer.hAn optional dictionary referenced to find property values that aren't explicitly defined by the receiver.
@property(copy) NSDictionary *style
This dictionary may in turn have a style key, forming a hierarchy of default values. In the case of hierarchical style dictionaries the shallowest value for a property is used. For example, the value for “style.someValue” takes precedence over “style.style.someValue”.
If the style dictionary doesn't define a value for an attribute, the receiver’s defaultValueForKey: method is called. Defaults to nil.
The style dictionary is not consulted for the following keys: bounds, frame.
Warning: If the style dictionary or any of its ancestors are modified, the values of the layer's properties are undefined until the style property is reset.
CALayer.hAn array containing the receiver's sublayers.
@property(copy) NSArray *sublayers
The layers are listed in back to front order. Defaults to nil. 
When setting the sublayers property to an array populated with layer objects you must ensure that the layers have had their superlayer set to nil.
CALayer.hSpecifies a transform applied to each sublayer when rendering. Animatable.
@property CATransform3D sublayerTransform
This property is typically used as the projection matrix to add perspective and other viewing effects to the receiver. Defaults to the identity transform.
CALayer.hSpecifies receiver's superlayer. (read-only)
@property(readonly) CALayer *superlayer
CALayer.hSpecifies the transform applied to the receiver, relative to the center of its bounds. Animatable.
@property CATransform3D transform
Defaults to the identity transform.
CALayer.hReturns the visible region of the receiver, in its own coordinate space. (read-only)
@property(readonly) CGRect visibleRect
The visible region is the area not clipped by the containing scroll layer.
CAScrollLayer.hSpecifies the receiver’s position on the z axis. Animatable.
@property CGFloat zPosition
Defaults to 0.
CALayer.hReturns an object that implements the default action for the specified identifier.
+ (id<CAAction>)defaultActionForKey:(NSString *)aKey
The identifier of the action.
Returns the object that provides the action for aKey. The object must implement the CAAction protocol. 
See actionForKey: for a description of the action search pattern.
CALayer.hSpecifies the default value of the property with the specified key.
+ (id)defaultValueForKey:(NSString *)key
The name of one of the receiver’s properties.
The default value for the named property. Returns nil if no default value has been set.
If this method returns nil a suitable “zero” default value for the property is provided, based on the declared type of the key. For example, if key is a CGSize object, a size of (0.0,0.0) is returned. For a CGRect an empty rectangle is returned. For CGAffineTransform and CATransform3D, the appropriate identity matrix is returned. 
If key is not a known for property of the class, the result of the method is undefined.
CALayer.hCreates and returns an instance of CALayer.
+ (id)layer
The initialized CALayer object or nil if initialization is not successful.
CALayer.hReturns an object that implements the action for the specified identifier.
- (id<CAAction>)actionForKey:(NSString *)aKey
The identifier of the action.
Returns the object that provides the action for aKey. The object must implement the CAAction protocol.
There are three types of actions: property changes, externally-defined events, and layer-defined events. Whenever a layer property is modified, the event with the same name as the property is triggered. External events are defined by the owner of the layer calling actionForKey: to lookup the action associated with the identifier and directly messaging the returned object (if non-nil.)
The default implementation searches for an action object as follows:
If defined, return the object provided by the receiver’s delegate method actionForLayer:forKey:.
Return the object that corresponds to the identifier in the receiver’s actions dictionary property.
Search the style dictionary recursively for an actions dictionary that contains the identifier.
Call the receiver’s defaultActionForKey: method and return the result.
If any of these steps results in a non-nil action object, the remaining steps are ignored and the action is returned. If a step returns an NSNull object, the remaining steps are ignored and nil is returned.
When an action object is invoked it receives three parameters: the name of the event, the object on which the event happened (the layer), and a dictionary of named arguments specific to each event kind.
CALayer.hAdd an animation object to the receiver’s render tree for the specified key.
- (void)addAnimation:(CAAnimation *)anim forKey:(NSString *)key
The animation to be added to the render tree. Note that the object is copied by the render tree, not referenced. Any subsequent modifications to the object will not be propagated into the render tree.
A string that specifies an identifier for the animation. Only one animation per unique key is added to the layer. The special key kCATransition is automatically used for transition animations. The nil pointer is also a valid key.
Typically this is implicitly invoked through an action that is an CAAnimation object. If the duration property of the animation is zero or negative it is given the default duration, either the current value of the kCATransactionAnimationDuration transaction property, otherwise .25 seconds 
CALayer.hAdds the constraint to the receiver's array of constraint objects.
- (void)addConstraint:(CAConstraint *)aConstraint
The constraint object to add to the receiver’s array of constraint objects.
See CAConstraintLayoutManager Class Reference for more information.
CAConstraintLayoutManager.hAppends the layer to the receiver’s sublayers array.
- (void)addSublayer:(CALayer *)aLayer
The layer to be added to the receiver’s sublayers array.
CALayer.hConvenience method for getting the transform property as an affine transform.
- (CGAffineTransform)affineTransform
A CGAffineTransform instance that best represents the receiver’s transform property.
CALayer.hReturns the animation added to the receiver with the specified identifier.
- (CAAnimation *)animationForKey:(NSString *)key
A string that specifies the identifier of the animation.
The animation object matching the identifier, or nil if no such animation exists.
Attempting to modify any properties of the returned object will result in undefined behavior.
CALayer.hReturns whether the receiver contains a specified point.
- (BOOL)containsPoint:(CGPoint)thePoint
A point in the receiver’s coordinate system.
YES if the bounds of the layer contains the point.
CALayer.hConverts the point from the specified layer’s coordinate system to the receiver’s coordinate system.
- (CGPoint)convertPoint:(CGPoint)aPoint fromLayer:(CALayer *)layer
A point specifying a location in the coordinate system of layer.
The layer with aPoint in its coordinate system. The receiver and layer and must share a common parent layer.
The point converted to the receiver’s coordinate system.
CALayer.hConverts the point from the receiver’s coordinate system to the specified layer’s coordinate system.
- (CGPoint)convertPoint:(CGPoint)aPoint toLayer:(CALayer *)layer
A point specifying a location in the coordinate system of layer.
The layer into whose coordinate system aPoint is to be converted. The receiver and layer and must share a common parent layer.
The point converted to the coordinate system of layer.
CALayer.hConverts the rectangle from the specified layer’s coordinate system to the receiver’s coordinate system.
- (CGRect)convertRect:(CGRect)aRect fromLayer:(CALayer *)layer
A point specifying a location in the coordinate system of layer.
The layer with arect in its coordinate system. The receiver and layer and must share a common parent layer.
The rectangle converted to the receiver’s coordinate system.
CALayer.hConverts the rectangle from the receiver’s coordinate system to the specified layer’s coordinate system.
- (CGRect)convertRect:(CGRect)aRect toLayer:(CALayer *)layer
A point specifying a location in the coordinate system of layer.
The layer into whose coordinate system aRect is to be converted. The receiver and layer and must share a common parent layer.
The rectangle converted to the coordinate system of layer.
CALayer.hConverts the time interval from the specified layer’s time space to the receiver’s time space.
- (CFTimeInterval)convertTime:(CFTimeInterval)timeInterval fromLayer:(CALayer *)layer
A point specifying a location in the coordinate system of layer.
The layer with timeInterval in its time space. The receiver and layer and must share a common parent layer.
The time interval converted to the receiver’s time space.
CALayer.hConverts the time interval from the receiver’s time space to the specified layer’s time space
- (CFTimeInterval)convertTime:(CFTimeInterval)timeInterval toLayer:(CALayer *)layer
A point specifying a location in the coordinate system of layer.
The layer into whose time space timeInterval is to be converted. The receiver and layer and must share a common parent layer.
The time interval converted to the time space of layer.
CALayer.hReload the content of this layer.
- (void)display
Calls the drawInContext: method, then updates the receiver’s contents property. You should not call this method directly.
Subclasses can override this method to set the contents property to an appropriate CGImageRef.
CALayer.hDraws the receiver’s content in the specified graphics context.
- (void)drawInContext:(CGContextRef)ctx
The graphics context in which to draw the content.
Default implementation does nothing. The context may be clipped to protect valid layer content. Subclasses that wish to find the actual region to draw can call CGContextGetClipBoundingBox. Called by the display method when the contents property is being updated. 
Subclasses can override this method to draw the receiver’s content.
CALayer.hReturns the farthest descendant of the receiver in the layer hierarchy (including itself) that contains a specified point.
- (CALayer *)hitTest:(CGPoint)thePoint
A point in the coordinate system of the receiver's superlayer.
The layer that contains thePoint, or nil if the point lies outside the receiver’s bounds rectangle.
CALayer.hReturns an initialized CALayer object.
- (id)init
An initialized CALayer object.
This is the designated initializer for CALayer.
CALayer.hOverride to copy or initialize custom fields of the specified layer.
- (id)initWithLayer:(id)layer
The layer from which custom fields should be copied.
A layer instance with any custom instance variables copied from layer.
This initializer is used to create shadow copies of layers, for example, for the presentationLayer method.
Subclasses can optionally copy their instance variables into the new object.
Subclasses should always invoke the superclass implementation
Note: Invoking this method in any other situation will produce undefined behavior. Do not use this method to initialize a new layer with an existing layer’s content.
CALayer.hInserts the layer into the receiver’s sublayers array, above the specified sublayer.
- (void)insertSublayer:(CALayer *)aLayer above:(CALayer *)siblingLayer
The layer to be inserted to the receiver’s sublayer array.
An existing sublayer in the receiver to insert aLayer above.
If sublayer is not in the receiver’s sublayers array, an exception is raised.
CALayer.hInserts the layer as a sublayer of the receiver at the specified index.
- (void)insertSublayer:(CALayer *)aLayer atIndex:(unsigned)index
The layer to be inserted to the receiver’s sublayer array.
The index in the receiver at which to insert aLayer. This value must not be greater than the count of elements in the sublayer array.
CALayer.hInserts the layer into the receiver’s sublayers array, below the specified sublayer.
- (void)insertSublayer:(CALayer *)aLayer below:(CALayer *)sublayer
The layer to be inserted to the receiver’s sublayer array.
An existing sublayer in the receiver to insert aLayer after.
If sublayer is not in the receiver’s sublayers array, an exception is raised.
CALayer.hA synthesized accessor for the doubleSided property.
- (BOOL)isDoubleSided
A synthesized accessor for the hidden property.
- (BOOL)isHidden
A synthesized accessor for the opaque property.
- (BOOL)isOpaque
Recalculate the receiver’s layout, if required.
- (void)layoutIfNeeded
CALayer.hCalled when the layer requires layout.
- (void)layoutSublayers
The default implementation invokes the layout manager method layoutSublayersOfLayer:, if a layout manager is specied and it implements that method. Subclasses can override this method to provide their own layout algorithm, which must set the frame of each sublayer.
CALayer.hReturns the model layer of the receiver, if it represents a current presentation layer.
- (id)presentationLayer
A layer instance representing the underlying model layer.
The result of calling this method after the transaction that produced the presentation layer has completed is undefined.
CALayer.hReturns the preferred frame size of the layer in the coordinate space of the superlayer.
- (CGSize)preferredFrameSize
Returns the receiver’s preferred frame size.
The default implementation calls the layout manager, if one exists and it implements the preferredSizeOfLayer: method. Otherwise, it returns the size of the receiver’s bounds rectangle mapped into coordinate space of the receiver’s superlayer. 
CALayer.hReturns a copy of the layer containing all properties as they were at the start of the current transaction, with any active animations applied.
- (id)presentationLayer
A layer instance representing the current presentation layer.
This method provides a close approximation to the version of the layer that is currently being displayed. The sublayers, mask, and superlayer properties of the returned layer return the presentation versions of these properties. This pattern carries through to the read-only layer methods. For example, sending a hitTest: message to the presentationLayer will query the presentation values of the layer tree.
CALayer.hRemove all animations attached to the receiver.
- (void)removeAllAnimations
CALayer.hRemove the animation attached to the receiver with the specified key.
- (void)removeAnimationForKey:(NSString *)key
The identifier of the animation to remove.
CALayer.hRemoves the layer from the sublayers array or mask property of the receiver’s superlayer.
- (void)removeFromSuperlayer
CALayer.hRenders the receiver and its sublayers into the specified context.
- (void)renderInContext:(CGContextRef)ctx
The graphics context that the content is rendered in to.
This method renders directly from the layer tree, ignoring any animations added to the render tree. Renders in the coordinate space of the layer.
Important: The Mac OS X v10.5 implementation of this method does not support the entire Core Animation composition model. QCCompositionLayer, CAOpenGLLayer, and QTMovieLayer layers are not rendered. Additionally, layers that use 3D transforms are not rendered, nor are layers that specify backgroundFilters, filters, compositingFilter, or a mask values. Future versions of Mac OS X may add support for rendering these layers and properties.
CALayer.hReplaces the layer in the receiver’s sublayers array with the specified new layer.
- (void)replaceSublayer:(CALayer *)oldLayer with:(CALayer *)newLayer
The layer to be replaced to the receiver’s sublayer array.
The layer with which to replace oldLayer in the receiver’s sublayer array.
If the receiver is not the superlayer of oldLayer the behavior is undefined.
CALayer.hInforms the receiver’s sublayers that the receiver’s bounds rectangle size has changed.
- (void)resizeSublayersWithOldSize:(CGSize)size
The previous size of the receiver's bounds rectangle.
This method is used when the autoresizingmask property is used for resizing. It is called when the receiver’s bounds property is altered. It calls resizeSublayersWithOldSize: on each sublayer to resize the sublayer's frame to match the new superlayer bounds based on the sublayer's autoresizing mask.
CALayer.hInforms the receiver that the bounds size of its superview has changed.
- (void)resizeWithOldSuperlayerSize:(CGSize)size
The previous size of the superlayer’s bounds rectangle
This method is used when the autoresizingmask property is used for resizing. It is called when the receiver’s bounds property is altered. It calls resizeWithOldSuperlayerSize: on each sublayer to resize the sublayer's frame to match the new superlayer bounds based on the sublayer's autoresizing mask.
CALayer.hScrolls the receiver’s closest ancestor CAScrollLayer so that the specified point lies at the origin of the layer.
- (void)scrollPoint:(CGPoint)thePoint
The point in the receiver to scroll to.
CAScrollLayer.hScrolls the receiver’s closest ancestor CAScrollLayer the minimum distance needed so that the specified rectangle becomes visible.
- (void)scrollRectToVisible:(CGRect)theRect
The rectangle to be made visible.
CAScrollLayer.hConvenience method for setting the transform property as an affine transform.
- (void)setAffineTransform:(CGAffineTransform)m
The affine transform to set as the transform property.
CALayer.hMarks the receiver as needing display before the content is next committed.
- (void)setNeedsDisplay
Calling this method will cause the receiver to recache its content. This will result in the layer receiving a drawInContext: which may result in the delegate receiving either a displayLayer: or drawLayer:inContext: message. 
CALayer.hMarks the region of the receiver within the specified rectangle as needing display.
- (void)setNeedsDisplayInRect:(CGRect)theRect
The rectangular region of the receiver to mark as invalid; it should be specified in the coordinate system of the receiver.
CALayer.hCalled when the preferred size of the receiver may have changed.
- (void)setNeedsLayout
This method is typically called when the receiver’s sublayers have changed. It marks that the receiver sublayers must update their layout (by invoking layoutSublayers on the receiver and all its superlayers). If the receiver's layout manager implements the invalidateLayoutOfLayer: method it is called.
CALayer.hSpecifies whether the value of the property for a given key is archived.
- (BOOL)shouldArchiveValueForKey:(NSString *)key
The name of one of the receiver’s properties.
YES if the specified property should be archived, otherwise NO.
The default implementation returns YES. Called by the object's implementation of encodeWithCoder:.
CALayer.hAllows the delegate to customize the action for a layer.
- (id<CAAction>)actionForLayer:(CALayer *)layer forKey :(NSString *)key
The layer that is the target of the action.
The identifier of the action.
Returns an object implementing the CAAction protocol. May return nil if the delegate doesn't specify a behavior for key.
See actionForKey: for a description of the action search pattern.
CALayer.hAllows the delegate to override the display implementation. 
- (void)displayLayer:(CALayer *)layer
The layer to display.
If defined, called by the default implementation of display, in which case it should set the layer’s contents property.
CALayer.hAllows the delegate to override the layer’s drawInContext: implementation.
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx
The layer to draw the content of.
The graphics context to draw in to.
If defined, called by the default implementation of drawInContext:.
CALayer.hThese constants are used by the autoresizingMask property.
enum CAAutoresizingMask { kCALayerNotSizable = 0, kCALayerMinXMargin = 1U << 0, kCALayerWidthSizable = 1U << 1, kCALayerMaxXMargin = 1U << 2, kCALayerMinYMargin = 1U << 3, kCALayerHeightSizable = 1U << 4, kCALayerMaxYMargin = 1U << 5 };
kCALayerNotSizableThe receiver cannot be resized.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerMinXMarginThe left margin between the receiver and its superview is flexible.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerWidthSizableThe receiver’s width is flexible.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerMaxXMarginThe right margin between the receiver and its superview is flexible.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerMinYMarginThe bottom margin between the receiver and its superview is flexible.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerHeightSizableThe receiver’s height is flexible.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerMaxYMarginThe top margin between the receiver and its superview is flexible.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
CALayer.hThese constants are the predefined action identifiers used by actionForKey:, addAnimation:forKey:, defaultActionForKey:, removeAnimationForKey:, actionForLayer:forKey:, and the CAAction protocol method runActionForKey:object:arguments:.
NSString * const kCAOnOrderIn; NSString * const kCAOnOrderOut; NSString * const kCATransition;
kCAOnOrderInThe identifier that represents the action taken when a layer becomes visible, either as a result being inserted into the visible layer hierarchy or the layer is no longer set as hidden.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAOnOrderOutThe identifier that represents the action taken when the layer is removed from the layer hierarchy or is hidden.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCATransitionThe identifier that represents a transition animation.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
CALayer.hThis mask is used by the edgeAntialiasingMask property. 
enum CAEdgeAntialiasingMask { kCALayerLeftEdge = 1U << 0, kCALayerRightEdge = 1U << 1, kCALayerBottomEdge = 1U << 2, kCALayerTopEdge = 1U << 3, };
kCALayerLeftEdgeSpecifies that the left edge of the receiver’s content should be antialiased.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerRightEdgeSpecifies that the right edge of the receiver’s content should be antialiased.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerBottomEdgeSpecifies that the bottom edge of the receiver’s content should be antialiased.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCALayerTopEdgeSpecifies that the top edge of the receiver’s content should be antialiased.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
CALayer.hThe contents gravity constants specify the position of the content object when the layer bounds is larger than the bounds of the content object. The are used by the contentsGravity property.
NSString * const kCAGravityCenter; NSString * const kCAGravityTop; NSString * const kCAGravityBottom; NSString * const kCAGravityLeft; NSString * const kCAGravityRight; NSString * const kCAGravityTopLeft; NSString * const kCAGravityTopRight; NSString * const kCAGravityBottomLeft; NSString * const kCAGravityBottomRight; NSString * const kCAGravityResize; NSString * const kCAGravityResizeAspect; NSString * const kCAGravityResizeAspectFill;
kCAGravityCenterThe content is horizontally and verticallycentered in the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityTopThe content is horizontally centered at the top-edge of the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityBottomThe content is horizontally centered at the bottom-edge of the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityLeftThe content is vertically centered at the left-edge of the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityRightThe content is vertically centered at the right-edge of the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityTopLeftThe content is positioned in the top-left corner of the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityTopRightThe content is positioned in the top-right corner of the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityBottomLeftThe content is positioned in the bottom-left corner of the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityBottomRightThe content is positioned in the bottom-right corner of the bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityResizeThe content is resized to fit the entire bounds rectangle.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityResizeAspectThe content is resized to fit the bounds rectangle, preserving the aspect of the content. If the content does not completely fill the bounds rectangle, the content is centered in the partial axis.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAGravityResizeAspectFillThe content is resized to completely fill the bounds rectangle, while still preserving the aspect of the content. The content is centered in the axis it exceeds.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
CALayer.hDefines the identity transform matrix used by Core Animation.
const CATransform3D CATransform3DIdentity
CATransform3DIdentityThe identity transform: [1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1].
Available in Mac OS X v10.5 and later.
Declared in CATransform3D.h.
CATransform3D.hThese constants specify the scaling filters used by magnificationFilter and minificationFilter. 
NSString * const kCAFilterLinear; NSString * const kCAFilterNearest;
kCAFilterLinearLinear interpolation filter.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
kCAFilterNearestNearest neighbor interpolation filter.
Available in Mac OS X v10.5 and later.
Declared in CALayer.h.
CALayer.hDefines the standard transform matrix used throughout Core Animation.
struct CATransform3D
   {
   CGFloat m11, m12, m13, m14;
   CGFloat m21, m22, m23, m24;
   CGFloat m31, m32, m33, m34;
   CGFloat m41, m42, m43, m44;
};
typedef struct CATransform3D CATransform3D;
m11The entry at position 1,1 in the matrix.
m12The entry at position 1,2 in the matrix.
m13The entry at position 1,3 in the matrix.
m14The entry at position 1,4 in the matrix.
m21The entry at position 2,1 in the matrix.
m22The entry at position 2,2 in the matrix.
m23The entry at position 2,3 in the matrix.
m24The entry at position 2,4 in the matrix.
m31The entry at position 3,1 in the matrix.
m32The entry at position 3,2 in the matrix.
m33The entry at position 3,3 in the matrix.
m34The entry at position 3,4 in the matrix.
m41The entry at position 4,1 in the matrix.
m42The entry at position 4,2 in the matrix.
m43The entry at position 4,3 in the matrix.
m44The entry at position 4,4 in the matrix.
The transform matrix is used to rotate, scale, translate, skew, and project the layer content. Functions are provided for creating, concatenating, and modifying CATransform3D data.
CATransform3D.h
        © 2009 Apple Inc. All Rights Reserved. (Last updated: 2009-02-04)