Declared in SPAnimatable.h

Overview

The SPAnimatable protocol describes objects that are animated depending on the passed time. Any object that implements this protocol can be added to the SPJuggler.

Tasks

  • – advanceTime:

    Advance the animation by a number of seconds.

    required method
  •   isComplete

    Indicates if the animation is finished. (The juggler will purge the object.)

    property required method

Properties

isComplete

Indicates if the animation is finished. (The juggler will purge the object.)

@property (nonatomic, readonly) BOOL isComplete

Discussion

Indicates if the animation is finished. (The juggler will purge the object.)

Declared In

SPAnimatable.h

Instance Methods

advanceTime:

Advance the animation by a number of seconds.

- (void)advanceTime:(double)seconds

Discussion

Advance the animation by a number of seconds.

Declared In

SPAnimatable.h