PAGViewListener Protocol Reference

Conforms to NSObject
Declared in PAGView.h

– onAnimationStart:

Notifies the beginning of the animation. It can be called from either the UI thread or the thread that calls the play method.

- (void)onAnimationStart:(PAGView *)pagView

Declared In

PAGView.h

– onAnimationEnd:

Notifies the end of the animation. It can only be called from the UI thread.

- (void)onAnimationEnd:(PAGView *)pagView

Declared In

PAGView.h

– onAnimationCancel:

Notifies the cancellation of the animation. It can be called from either the UI thread or the thread that calls the stop method.

- (void)onAnimationCancel:(PAGView *)pagView

Declared In

PAGView.h

– onAnimationRepeat:

Notifies the repetition of the animation. It can only be called from the UI thread.

- (void)onAnimationRepeat:(PAGView *)pagView

Declared In

PAGView.h

– onAnimationUpdate:

Notifies another frame of the animation has occurred. It may be called from an arbitrary thread if the animation is running asynchronously.

- (void)onAnimationUpdate:(PAGView *)pagView

Declared In

PAGView.h