When i call:
id actionNasce = [CCAnimate actionWithAnimation:nasce];
id actionCome=[CCAnimate actionWithAnimation:come];
id sequencia=[CCSequence actions:actionNasce,[CCRepeatForever actionWithAction:actionCome],nil];
I get this error: Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[CCRepeatForever duration]: unrecognized selector sent to instance 0xf44a60'
Am I doing something wrong? Isn't that supposed to work, if I remove any of the actions it works, but it doesn't when both are on the same CCAequence.