在为朋友加载fb时,启用ARC的项目可能存在内存泄漏

时间:2013-05-20 12:36:18

标签: ios facebook memory-leaks

我在为fb加载朋友时遇到内存泄漏,原因可能是什么?我在过去3天内解决了这个错误,但没有找到任何有力的理由...... :(

我非常清楚

"ARC only deals with Cocoa objects. If you are using Core Foundation objects you still have to use memory management. There are rules for transferring ownership of objects when using toll-free bridging. ARC doesn't make memory management go away - it just makes the more common parts of it easier and more efficient. So, yes - you still need to check for leaks."

我的代码中是否有任何Core Foundation对象?如果是,如何管理呢?

检查附加的图像

enter image description here

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

你有一个潜在的泄漏,这意味着你可能拥有它,或者你可能没有。 Profiler可以给出误报结果。但只是为了确保使用Instruments检查项目并验证内存分配(泄漏)。这将告诉你确定你是否有泄漏。