应用程序因巨大的分配而崩溃?

时间:2012-08-20 17:48:55

标签: iphone objective-c ipad memory-management cocos2d-iphone

我有一个小游戏,我想在仪器中测试泄漏和分配,但是几秒钟后,它就崩溃了。我提供了截图。请看一下。关于我的应用的一些信息:在我的初始场景(导致崩溃)中,我使用CCVideoPlayerCCSpriteBatchNodeCCSpriteFrameCache

以下是我如何使用它们:

//CCVideoPlayer

    NSUserDefaults *uD = [NSUserDefaults standardUserDefaults];

            if([uD boolForKey:@"videoShown"] == NO){
                [CCVideoPlayer setDelegate:self];
                [CCVideoPlayer playMovieWithFile:@"Main.mp4"];
                [uD setBool:YES forKey:@"videoShown"];
            }

//spriteframecache and batchnode
[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"sprites.plist"];
            spriteSheet = [CCSpriteBatchNode batchNodeWithFile:@"sprites.png"];

我不在此课程中使用调度程序。

http://oi47.tinypic.com/35hmwrb.jpg

如果您需要更详细的分配截图,请告诉我哪一个,我会上传它。 谢谢你的帮助。

0 个答案:

没有答案