I want to use the following lines of code in my project.
// Create the intro image
CGSize screenSize = [CCDirector sharedDirector].winSize;
CCSprite *introImage = [CCSprite spriteWithFile:@"intro1.png"];
[introImage setPosition:ccp(screenSize.width/2, screenSize.height/2)];
[self addChild:introImage];
// Create the intro animation, and load it from intro1 to intro7.png
CCAnimation *introAnimation = [CCAnimation animation];
[introAnimation setDelay:2.5f];
for (int frameNumber=0; frameNumber < 8; frameNumber++) {
CCLOG(@"Adding image intro%d.png to the introAnimation.",frameNumber);
[introAnimation addFrameWithFilename:
[NSString stringWithFormat:@"intro%d.png",frameNumber]];
I get the warning:
instance method '-setDelay:' not found (return type defaults to 'id')
pointing to the line
[introAnimation setDelay:2.5f];
and a similar warning pointing to the line
[introAnimation addFrameWithFilename: [NSString stringWithFormat:@"intro%d.png",frameNumber]];
Has setDelay and addFrameWithFilename been deprecated? If yes, what should I use in their place. Please help.
/** Delay in seconds of the "delay unit" */ @property (nonatomic, readwrite) float delayPerUnit;– Kreiri Mar 13 at 19:35