<bdo id='XWtBB'></bdo><ul id='XWtBB'></ul>
<legend id='XWtBB'><style id='XWtBB'><dir id='XWtBB'><q id='XWtBB'></q></dir></style></legend>

    1. <i id='XWtBB'><tr id='XWtBB'><dt id='XWtBB'><q id='XWtBB'><span id='XWtBB'><b id='XWtBB'><form id='XWtBB'><ins id='XWtBB'></ins><ul id='XWtBB'></ul><sub id='XWtBB'></sub></form><legend id='XWtBB'></legend><bdo id='XWtBB'><pre id='XWtBB'><center id='XWtBB'></center></pre></bdo></b><th id='XWtBB'></th></span></q></dt></tr></i><div id='XWtBB'><tfoot id='XWtBB'></tfoot><dl id='XWtBB'><fieldset id='XWtBB'></fieldset></dl></div>

    2. <small id='XWtBB'></small><noframes id='XWtBB'>

    3. <tfoot id='XWtBB'></tfoot>
    4. iPhone 内存管理:App 退出时无需清理和释放保留的对象?

      iPhone Memory Management: No Need to Clean Up and Release Retained Objects on App Quit?(iPhone 内存管理:App 退出时无需清理和释放保留的对象?)
      <tfoot id='DLlHI'></tfoot>

          <tbody id='DLlHI'></tbody>
        <legend id='DLlHI'><style id='DLlHI'><dir id='DLlHI'><q id='DLlHI'></q></dir></style></legend>
          <bdo id='DLlHI'></bdo><ul id='DLlHI'></ul>

              <small id='DLlHI'></small><noframes id='DLlHI'>

              • <i id='DLlHI'><tr id='DLlHI'><dt id='DLlHI'><q id='DLlHI'><span id='DLlHI'><b id='DLlHI'><form id='DLlHI'><ins id='DLlHI'></ins><ul id='DLlHI'></ul><sub id='DLlHI'></sub></form><legend id='DLlHI'></legend><bdo id='DLlHI'><pre id='DLlHI'><center id='DLlHI'></center></pre></bdo></b><th id='DLlHI'></th></span></q></dt></tr></i><div id='DLlHI'><tfoot id='DLlHI'></tfoot><dl id='DLlHI'><fieldset id='DLlHI'></fieldset></dl></div>

                本文介绍了iPhone 内存管理:App 退出时无需清理和释放保留的对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                Is the following true?

                When the app is about to quit, it's not necessary to clean up the memory by calling release on all your retained objects, because the iPhone OS will reclaim the memory it allocated for your app when you launched it. This is faster and safer than rely on the apps to correctly clean up after themselves. You can verify this by putting an NSLog call (or a debugger breakpoint) in the dealloc method of your application delegate and seeing it's never called.

                So, cleaning things up when the app is about to quit is useless. Moreover, you have very limited time before the OS wipes your app out, so don't waste it on cleaning things. Focus on saving your game and any other relevant stuff.

                Source (cocos2d-iphone.org)

                解决方案

                Yes. Quoting the documentation:

                Important: When an application terminates, objects may not be sent a dealloc message since the process’s memory is automatically cleared on exit—it is more efficient simply to allow the operating system to clean up resources than to invoke all the memory management methods. This has implications for how you implement a dealloc method—see "Resource Management."

                这篇关于iPhone 内存管理:App 退出时无需清理和释放保留的对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)
                Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)
                Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))
                Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)
                How to convert 32 bit PNG to RGB565?(如何将 32 位 PNG 转换为 RGB565?)
                Proper cocos2d scene restart?(正确的 cocos2d 场景重启?)
                <tfoot id='rYasg'></tfoot>
              • <legend id='rYasg'><style id='rYasg'><dir id='rYasg'><q id='rYasg'></q></dir></style></legend>
              • <small id='rYasg'></small><noframes id='rYasg'>

                  • <bdo id='rYasg'></bdo><ul id='rYasg'></ul>
                            <tbody id='rYasg'></tbody>
                          <i id='rYasg'><tr id='rYasg'><dt id='rYasg'><q id='rYasg'><span id='rYasg'><b id='rYasg'><form id='rYasg'><ins id='rYasg'></ins><ul id='rYasg'></ul><sub id='rYasg'></sub></form><legend id='rYasg'></legend><bdo id='rYasg'><pre id='rYasg'><center id='rYasg'></center></pre></bdo></b><th id='rYasg'></th></span></q></dt></tr></i><div id='rYasg'><tfoot id='rYasg'></tfoot><dl id='rYasg'><fieldset id='rYasg'></fieldset></dl></div>