Inherits from | |
Conforms to | |
Framework | /System/Library/Frameworks/QuartzCore.framework |
Declared in | CACIFilterAdditions.h |
Companion guides |
Core Animation adds two additional properties to the CIFilter
class. These properties are accessible through key-value coding as well as the properties declared below.
name
property
enabled
property
– isEnabled
For more about Objective-C properties, see “Properties” in The Objective-C 2.0 Programming Language.
Determines if the receiver is enabled. Animatable.
@property BOOL enabled
The receiver is applied to its input when this property is set to YES
. Default is YES
.
CACIFilterAdditions.h
The name of the receiver.
@property(copy) NSString *name
Default is nil
. Each CIFilter
instance can have an assigned name. The name is used to construct key paths to the filter’s attributes. For example, if a CIFilter
instance has the name “myExposureFilter
”, you refer to attributes of the filter using a key path such as “filters.myExposureFilter.inputEV
”. Layer animations may also access filter attributes via these key paths.
CACIFilterAdditions.h
A synthesized accessor for the enabled
property.
- (BOOL)isEnabled
© 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-07-24)