I’m trying to make a label fade out from the screen, then after that if finished remove it from the view. How do I queue it so that the view waits for the label to be fully faded before it removes it?
id sequence = [CCSequence actions:[splashLabel runAction:[CCFadeOut actionWithDuration:0.5]], [self removeChild:splashLabel cleanup:YES], nil];
[self runAction:sequence];
1 Answer