FMKAnimationDelegate Protocol Reference

Conforms to NSObject
Declared in FMKAnimationDelegate.h

Overview

插值回调方法

– updateInterpolationValue:key: required method

动画插值回调

- (void)updateInterpolationValue:(id)value key:(NSString *)key

Parameters

value

插值结果

key

key

Declared In

FMKAnimationDelegate.h

– animation:values:count: required method

插值函数回调方法

- (void)animation:(FMKAnimation *)animation values:(double *)values count:(NSUInteger)count

Parameters

animation

插值对象

values

中间值

count

中间值的数量

Declared In

FMKAnimationDelegate.h

– animationWillStart:key:

动画将要开始

- (void)animationWillStart:(FMKAnimation *)animation key:(NSString *)key

Parameters

animation

动画

key

KEY

Declared In

FMKAnimationDelegate.h

– animationIsExecuting:key:

动画正在执行

- (void)animationIsExecuting:(FMKAnimation *)animation key:(NSString *)key

Parameters

animation

动画对象

key

KEY

Declared In

FMKAnimationDelegate.h

– animationDidFinish:key:

动画完成

- (void)animationDidFinish:(FMKAnimation *)animation key:(NSString *)key

Parameters

animation

动画对象

key

KEY

Declared In

FMKAnimationDelegate.h

– animationPause:key:

动画暂停

- (void)animationPause:(FMKAnimation *)animation key:(NSString *)key

Parameters

animation

动画对象

key

KEY

Declared In

FMKAnimationDelegate.h

– animationResume:key:

动画暂停恢复

- (void)animationResume:(FMKAnimation *)animation key:(NSString *)key

Parameters

animation

动画对象

key

KEY

Declared In

FMKAnimationDelegate.h