
获得徽章 0
- 刚看到的, FBRetainCycleDetector:这是 facebook 开源的一个内存泄漏检测工具。
它可以检测出循环引用:FBRetainCycleDetector *detector = [FBRetainCycleDetector new];
[detector addCandidate:myObject];
NSSet *retainCycles = [detector findRetainCycles];
检查出的内存泄漏将打印出来:
-> DownloadAudioListViewController ,
-> _callblock -> __NSMallocBlock__展开评论9