ios潜在泄漏如何解决?

时间:2011-09-08 22:25:45

标签: objective-c ios memory-leaks retaincount

我分析了我的项目: 这就是结果: enter image description here

什么方法,我该如何解决这个问题?

2 个答案:

答案 0 :(得分:6)

使用它创建pdfURL后,您应该发布pdf

...试

CGPDFDocumentRef pdf = CGPDFDocumentCreateWithURL(pdfURL);
CFRelease(pdfURL);

答案 1 :(得分:4)

您可能希望熟悉Memory Management Programming Guide for Core Foundation,尤其是ownership policy

简而言之,您必须CFRelease() pdfURL个对象。 : - )