我认为升级到 XCODE5 和 Cocos2D 2.x 是合适的,但我的代码不同意。我设法找到了大多数其他代码的修复程序,但我似乎无法解决这个问题。
- (CCAnimation *)createCatAnimation:(NSString *)animType
{
CCAnimation *animation = [CCAnimation animation];
for(int i = 1; i <= 2; ++i) {
[animation addFrame:[[CCSpriteFrameCache sharedSpriteFrameCache] //addFrame: is deprecated
spriteFrameByName:
[NSString stringWithFormat:@"cat_%@_%d.png", animType, i]]];
}
animation.delay = 0.2; //.delay is deprecated
return animation;
}
我怎样才能改变它以对已弃用的东西感到满意?