If you read listing 4 in the Animation section Apple's Core Animation guide, it seems to use KVC and the key path "filters.pulseFilter.inputIntensity" to pick out an object called "pulseFilter" out of an NSArray
. "pulseFilter" is actually a CIFilter
named "pulseFilter" by calling the method setName
.
Now, I don't see the method setName defined anywhere. I also don't believe you can select a specific item out of an NSArray by using a key. Can someone explain how this works?
It does not necessarily have to go through standard
valueForKey:
orvalueForKeyPath:
of theNSArray
.Objects are free to provide own
valueForKeyPath:
method and handle KVC its own way and this is what probably the class of thisselectionLayer
object does.