Xcode8 中的给定功能 Visual Memory Debugger 的其他用途是什么

What are the other uses of Visual Memory Debugger, a given feature in Xcode 8

Visual Memory Debugger 可以帮助我找到保留和释放周期或 nasty/awesome 未很好地管理其内存的块和闭包。我知道我必须解决内存管理问题,例如 objective c 中的 __weak ,可能在 swift.My 中属于自己 问题是它还能用于什么?我在图中看到了很多视觉线索,所以除了内存管理问题之外,任何人都愿意详细解释,这些问题可以在代码本身的第 no 行中更早调试?

Xcode Visual Memory Debugger 帮助您找到废弃的内存。这是最简单的方法之一,在 IDE 内。在发布此功能之前,您必须打开 Instruments 进行检查。在我看来这很不舒服。您可以在 Facebook Visual Debugging with Xcode video from last WWDC. Another way to do it is FBMemoryProfiler, read more about this useful framework in this article 中获得更多信息。