MLeaksFinder 自动内存泄漏检测工具

来源:互联网 发布:歌曲剪切合并软件 编辑:程序博客网 时间:2024/05/16 19:47

MLeaksFinder 是 WeRead 团队开源的一款检测 iOS 内存泄漏的框架。

实现原理和使用方法就不多说了,实现原理参考WeRead 团队的博客:MLeaksFinder:精准 iOS 内存泄露检测工具 和 MLeaksFinder 新特性 。使用方法查考 MLeaksFinder

安装

使用 cocoapods 安装,pod install 之后可能会出现如下错误:

[!] The `BIM [Debug]` target overrides the `HEADER_SEARCH_PATHS` build setting defined in `Pods/Target Support Files/Pods-BIM/Pods-BIM.debug.xcconfig'. This can lead to problems with the CocoaPods installation    - Use the `$(inherited)` flag, or    - Remove the build settings from the target.[!] The `BIM [Release]` target overrides the `HEADER_SEARCH_PATHS` build setting defined in `Pods/Target Support Files/Pods-BIM/Pods-BIM.release.xcconfig'. This can lead to problems with the CocoaPods installation    - Use the `$(inherited)` flag, or    - Remove the build settings from the target.

如错误提示所示,在 Build Settings 中搜索 HEADER_SEARCH_PATHS 在后面添加 $(inherited)pod update 之后编译即可。

如果还没有成功,则在 Build Settings 中搜索 build active architecture only 将其改为 Yes,编译即可。

使用

不用修改代码,直接运行即可,当有内存泄漏发生,则会弹框提醒

pic