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,编译即可。
使用
不用修改代码,直接运行即可,当有内存泄漏发生,则会弹框提醒
MLeaksFinder是一款由WeRead团队开发的开源iOS内存泄漏检测框架。本文介绍其安装过程及常见错误解决方法,通过简单的运行即可监测并提醒内存泄漏问题。
2586

被折叠的 条评论
为什么被折叠?



