Knowing where retain cycles are and removing them

后端 未结 1 423
悲哀的现实
悲哀的现实 2020-12-03 23:57

I was wondering if there was an easy way (or at least a way) to find out where retain cycles exist in your program. Also, if I then know where these retain cycles exist, dep

相关标签:
1条回答
  • 2020-12-04 00:20

    If you are using Xcode 8 or above, you can use the memory graph thingy to see what object holds a reference to what object.

    To see the memory graph, first build and run your app with Xcode. When you want to check whether all the instances you created are discarded properly, go to this tab on the left pane:

    Then press the button on the right there:

    After that, select the bottom-most option - View Memory Graph Hierarchy:

    Now it will show you all the objects that are in memory:

    In my case, I have a GameSystem object, 6 ButtonNode objects and a few others. You'll notice that there is a little ! beside the GameSystem object. That means this object is leaked. Also, GameScene should not be in memory anymore because the current scene is TitleScene. Let's see what is retaining it by clicking on the instance:

    Now you can clearly see that it is retained by a closure!

    That is how you use the memory graph to see where you should put weak-references and avoid retain cycles.

    0 讨论(0)
提交回复
热议问题