iOS使用Instrument的Leaks查找代码内存泄露

Posted jzssuanfa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS使用Instrument的Leaks查找代码内存泄露相关的知识,希望对你有一定的参考价值。

Here are some tips for finding leaks in our project:


1. 打开Instruments调试工具控制栏, Xcode -> Open Dev Tool -> Instruments

技术分享


2.选择Leaks工具

技术分享


3.设置Leaks内选项  选择Leaks, 选择Call Tree

技术分享


4.Run your App !

技术分享


5.设置Call Tree   选择Invert Call Tree , Hide System Libraries, 然后选择Leaks的项目 Target为你执行中的App, 点击红色圆圈执行,操作你App, 有红色的柱状就代表有内存泄露。查看对应的代码,解决!

技术分享













以上是关于iOS使用Instrument的Leaks查找代码内存泄露的主要内容,如果未能解决你的问题,请参考以下文章

iOS:Xcode 4.2:Leaks Instrument 说我的 NSMutableArray 和 NSMutableDictionary 有泄漏,但我看不到在哪里

检测错误及其解决方案 - Xcode 4.2 - Instrument [Memory Leaks]

instrument linker 的使用

讲解 iOS 中 Energy Usage Instrument 的统计数据

使用Xcode和Instruments调试解决iOS内存泄露

iOS 内存泄漏的检测方式