Cocos2DiOS7:不断增加样板代码的内存使用量

Cocos2DiOS7:不断增加样板代码的内存使用量,第1张

概述当应用程序刚运行而没有任何用户交互时,这就是iOS7模拟器的样子(我也没有运行我的任何代码,只有样板Cocos2D): 5.0-> 6.1没有这样的问题.产生此问题的代码是Cocos2D样板代码,我试图通过注释将其最小化,这是来自App委托的最小代码: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOp 当应用程序刚运行而没有任何用户交互时,这就是iOS7模拟器的样子(我也没有运行我的任何代码,只有样板Cocos2D):

5.0-> 6.1没有这样的问题.产生此问题的代码是Cocos2D样板代码,我试图通过注释将其最小化,这是来自App委托的最小代码:

- (BOol)application:(UIApplication *)application dIDFinishLaunchingWithOptions:(NSDictionary *)launchOptions{    // Create the main window    window_ = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];    // CCGLVIEw creation    CCGLVIEw *glVIEw = [CCGLVIEw vIEwWithFrame:[window_ bounds]                                   pixelFormat:kEAGLcolorFormatRGB565                                   depthFormat:0                            preserveBackbuffer:NO                                    sharegroup:nil                                 multiSampling:NO                               numberOfSamples:0];    director_ = (CCDirectorIOS*) [CCDirector sharedDirector];    director_.wantsFullScreenLayout = YES;    // display FSP and SPF    [director_ setdisplayStats:YES];    // set FPS at 60    [director_ setAnimationInterval:1.0/60];    // attach the openglVIEw to the director    [director_ setVIEw:glVIEw];    [glVIEw setMultipletouchEnabled:YES];    // 2D projection    [director_ setProjection:kCCDirectorProjection2D];    //  [director setProjection:kCCDirectorProjection3D];    // Enables High Res mode (Retina display) on iPhone 4 and maintains low res on all other devices    if( ! [director_ enableRetinadisplay:YES] )        cclOG(@"Retina display Not supported");    // Default texture format for PNG/BMP/TIFF/JPEG/GIF images    // It can be RGBA8888,RGBA4444,RGB5_A1,RGB565    // You can change this setting at any time.    [CCTexture2D setDefaultAlphaPixelFormat:kCCTexture2DPixelFormat_RGBA8888];    // If the 1st suffix is not found and if fallback is enabled then fallback suffixes are going to searched. If none is found,it will try with the name without suffix.    // On iPad HD  : "-ipadhd","-ipad","-hd"    // On iPad     : "-ipad","-hd"    // On iPhone HD: "-hd"    CCfileUtils *sharedfileUtils = [CCfileUtils sharedfileUtils];    [sharedfileUtils setEnableFallbackSuffixes:NO];             // Default: NO. No fallback suffixes are going to be used    [sharedfileUtils setiPhoneRetinadisplaySuffix:@"-hd"];      // Default on iPhone Retinadisplay is "-hd"    [sharedfileUtils setiPadSuffix:@"-ipad"];                   // Default on iPad is "ipad"    [sharedfileUtils setipadretinadisplaySuffix:@"-ipadhd"];    // Default on iPad Retinadisplay is "-ipadhd"    // Assume that PVR images have premultiplIEd Alpha    [CCTexture2D PVRImagesHavePremultiplIEdAlpha:YES];    // Create a Navigation Controller with the Director    navController_ = [[MyNavigationController alloc] initWithRootVIEwController:director_];    navController_.navigationbarHIDden = YES;    // for rotation and other messages    [director_ setDelegate:navController_];    // set the Navigation Controller as the root vIEw controller    [window_ setRootVIEwController:navController_];    // make main window visible    [window_ makeKeyAndVisible];    return YES;}

我还从directorDIDReshapeProjection启动中注释掉了CCDirector以消除我自己的代码.因此,当应用程序启动时,我只在黑屏上看到帧速率.

我从仪器上看到了同样的结果.

不幸的是无法在设备上测试iOS 7,但我不希望模拟器这样做.

更新:

我用以下结果制作了2个Mark Generations.

所有项目都是64字节分配.我不知道他们是什么类型的.值得一提的是,我正在使用最新稳定的Cocos2D 2.1.

更新#2:

调用64字节分配堆栈.

这不是一个确认的答案:它似乎是iOS 7.0和cocos2d 2.1特有的问题.

我观察到了相同的行为:iOS 7.0模拟器上的cocos2d 2.1会随着时间的推移增加内存使用量.还有很多,每隔几秒就会增加~1 MB.但是让我们忽略这一点,模拟器不是真正的设备.

在设备上(iOS 7的iPod touch第五代)内存几乎没有增加.在5分钟的时间段内使用标记的代表示生长至多15KB.有时会分配10-15 KB的块,但最终放弃,至少大部分.在5分钟内添加和粘附的内存量约为5 KB.对于不做任何事情或对任何事情做出回应的模板应用程序来说,并不多,但也不是什么.

在设备上添加且从未发布的内存大部分标记为< non-object>就像在模拟器中一样,在它们之间抛出一些CGPath.因此,这可能表明iOS 7上的cocos2d 2.1中可能存在内存管理问题 – 尽管它太小而不会对大多数应用程序产生任何负面影响(每小时泄漏约100 KB).

Sprite Kit和OpenGL应用程序以及在iOS 6模拟器上运行(我无法在iOS 6设备上测试)没有显示任何此类问题,实时字节保持稳定,标记的代数根本没有增长.

总结

以上是内存溢出为你收集整理的Cocos2D / iOS7:不断增加样板代码的内存使用量全部内容,希望文章能够帮你解决Cocos2D / iOS7:不断增加样板代码的内存使用量所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1085785.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存