0

以下は私のプログラムの一部です:

CCSpriteFrameCache *frameCache = [CCSpriteFrameCache sharedSpriteFrameCache];
NSString *plistFileName = [NSString stringWithFormat:@"%@%@", aName, @".plist"];
NSString *pngFileName = [NSString stringWithFormat:@"%@%@", aName, @".png"];

[frameCache addSpriteFramesWithFile:plistFileName textureFilename:pngFileName];
self.sprite = [CCSprite spriteWithSpriteFrameName:@"bandit_standby_1"];
self.batchNode = [CCSpriteBatchNode batchNodeWithFile:pngFileName];

問題は最後の行で発生します。

self.batchNode = [CCSpriteBatchNode batchNodeWithFile:pngFileName];

デバッグ モードでコンパイルすると、何も問題はありません。

ただし、モードをリリースに変更すると、次のエラーが発生します。

ImageIO: CGImageSourceCreateWithData データ パラメータが nil です

誰がどこが間違っているか教えてもらえますか?

4

0 に答える 0