QCCompositionLayer Class Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/Quartz.framework/Frameworks/QuartzComposer.framework |
| Availability | Available in OS X v10.5 and later. |
| Declared in | QCCompositionLayer.h |
| Companion guides | |
Overview
The QCCompositionLayer class loads, plays, and controls Quartz Composer compositions in a Core Animation layer hierarchy. The composition tracks the Core Animation layer time and is rendered directly at the current dimensions of the QCCompositionLayer object.
An archived QCCompositionLayer object saves the composition that’s loaded at the time the layer is archived. It detects layer usage and pauses or resumes the composition appropriately. A QCCompositionLayer object starts rendering the composition automatically when the layer is placed in a visible layer hierarchy. The layer stops rendering when it is hidden or removed from the visible layer hierarchy.
You can pass data to the input ports, or retrieve data from the output ports, of the root patch of a composition by accessing the patch attribute of the QCCompositionLayer instance using methods provided by the QCCompositionRenderer protocol.
Tasks
Creating the Layer
-
+ compositionLayerWithFile: -
+ compositionLayerWithComposition: -
– initWithFile: -
– initWithComposition:
Getting the Composition
Class Methods
compositionLayerWithComposition:
Creates and returns an instance of a composition layer using the provided Quartz Composer composition.
Parameters
- composition
The Quartz Composer composition to use as content.
Return Value
An initialized QCCompositionLayer object or nil if initialization is not successful.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
QCCompositionLayer.hcompositionLayerWithFile:
Creates and returns an instance of a composition layer using the Quartz Composer composition in the specified file.
Parameters
- path
A string that specifies the location of a Quartz Composer composition.
Return Value
An initialized QCCompositionLayer object or nil if initialization is not successful.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
QCCompositionLayer.hInstance Methods
composition
Returns the composition associated with the layer.
Return Value
The composition object associated with the layer or nil if there is none.
Availability
- Available in OS X v10.5 and later.
Declared In
QCCompositionLayer.hinitWithComposition:
Initializes and returns a composition layer using the provided Quartz Composer composition.
Parameters
- composition
The Quartz Composer composition to use as content.
Return Value
The initialized QCCompositionLayer object or nil if initialization is not successful.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
QCCompositionLayer.hinitWithFile:
Initializes and returns a composition layer using the Quartz Composer composition in the specified file.
Parameters
- path
A string that specifies the location of a Quartz Composer composition.
Return Value
The initialized QCCompositionLayer object or nil if initialization is not successful.
Availability
- Available in OS X v10.5 and later.
See Also
Declared In
QCCompositionLayer.h© 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-12-11)