![]() |
Core Plot (iOS and tvOS)
Cocoa plotting framework for macOS, iOS, and tvOS
|
Animation delegate. More...
#import <CPTAnimation.h>
Inheritance diagram for <CPTAnimationDelegate>:
Collaboration diagram for <CPTAnimationDelegate>:Public Instance Methods | |
Animation | |
| (void) | - animationDidStart: |
| (Optional) Informs the delegate that an animation operation started animating. More... | |
| (void) | - animationDidFinish: |
| (Optional) Informs the delegate that an animation operation stopped after reaching its full duration. More... | |
| (void) | - animationCancelled: |
| (Optional) Informs the delegate that an animation operation was stopped before reaching its full duration. More... | |
| (void) | - animationWillUpdate: |
| (Optional) Informs the delegate that the animated property is about to update. More... | |
| (void) | - animationDidUpdate: |
| (Optional) Informs the delegate that the animated property has been updated. More... | |
Public Instance Methods inherited from <NSObject> | |
| (NSString *) | - description |
| (NSUInteger) | - hash |
| (BOOL) | - isEqual: |
Animation delegate.
| - (void) animationCancelled: | (nonnull CPTAnimationOperation *) | operation |
(Optional) Informs the delegate that an animation operation was stopped before reaching its full duration.
| operation | The animation operation. |
| - (void) animationDidFinish: | (nonnull CPTAnimationOperation *) | operation |
(Optional) Informs the delegate that an animation operation stopped after reaching its full duration.
| operation | The animation operation. |
| - (void) animationDidStart: | (nonnull CPTAnimationOperation *) | operation |
(Optional) Informs the delegate that an animation operation started animating.
| operation | The animation operation. |
| - (void) animationDidUpdate: | (nonnull CPTAnimationOperation *) | operation |
(Optional) Informs the delegate that the animated property has been updated.
| operation | The animation operation. |
| - (void) animationWillUpdate: | (nonnull CPTAnimationOperation *) | operation |
(Optional) Informs the delegate that the animated property is about to update.
| operation | The animation operation. |