摘要:
问题描述: 如果我想让一个 sprite 显示3秒钟然后消失,应该怎么做?解决:使用 CCDelayTime 和 CCCallFuncCCSprite *sprite = [CCSprite spriteWithFile:@"blabla.png"];[layer addChild:sprite];CCDelayTime* waitAction = [CCDelayTime actionWithDuration:3]; //等待3秒CCCallFunc* vanishAction = [CCCallFunc actionWithTarget:self selector:@s 阅读全文