I have a CALayer to animate a change in its image contents. Now, how can I change how long it takes for this animation to take place?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It's more or less simple. You have an ivar CALayer *yourLayer. Then you set the delegate and implement the delegate method -(id)actionForLayer:forKey:
|
|||
|
|
|
FYI: You can just call:
in -layoutSublayers or anywhere else you modify the layers and expect them to implicitly animate. This will effect the current implicit transaction and any transaction within the current one. |
|||
|
|
|
A different way to do this:
That code would animate the change of the CALayer's contents over 2.5 seconds. You can also use this to disable all animations completely. Like this:
|
|||
|
|