How different is the behavior of CALayer's valueForKey from that of any other ordinary NSObject's?
I have a custom layer which inherits from CALayer, and that has a property named 'angle',
but [myLayer valueForKey: @"angle"] always returns nil while [myLayer angle] returns the right value.
ValueForKey: works as intended with a class inherited from NSObject, but not one from CALayer, so I guess it's [CALayer valueForKey:] that's doing some strange tricks..
Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
The whole Core Animation is actually backed by C++ code, the interface is just an Objective-C wrapper. Therefore, functions like If your
|
|||||||
|