Inherits from CCActionInterval : CCFiniteTimeAction : CCAction : NSObject
Conforms to NSCopying
Declared in CCActionInterval.h
CCIntervalAction.h

Overview

Repeats an action a number of times. To repeat an action forever use the CCRepeatForever action.

Tasks

Properties

innerAction

Inner action

@property (nonatomic, readwrite, retain) CCFiniteTimeAction *innerAction

Declared In

CCActionInterval.h

Class Methods

actionWithAction:times:

creates a CCRepeat action. Times is an unsigned integer between 1 and MAX_UINT.

+ (id)actionWithAction:(CCFiniteTimeAction *)action times:(NSUInteger)times

Declared In

CCActionInterval.h

Instance Methods

initWithAction:times:

initializes a CCRepeat action. Times is an unsigned integer between 1 and MAX_UINT

- (id)initWithAction:(CCFiniteTimeAction *)action times:(NSUInteger)times

Declared In

CCActionInterval.h