我想问是否可以将 ccsequence 和 bool 结合起来?
[self runAction:[CCSequence actions:
myAnimation,
(myBool = YES),
[CCDelayTime actionWithDuration:myTime],
[CCCallFunc actionWithTarget:self selector:@selector(otherAnimation)],
nil]];
但如果我这样做,程序就会崩溃。
有人知道解决办法吗??