I've analyzed my project: and this is the result: enter image description here

what means and how can I solve this?

thanks in advance

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You should release pdfURL after you have used it to create pdf.

Try...

CGPDFDocumentRef pdf = CGPDFDocumentCreateWithURL(pdfURL);
CFRelease(pdfURL);
link|improve this answer
feedback

It looks like you might want to familiarise yourself with the Memory Management Programming Guide for Core Foundation, specifically the ownership policy.

In short, you have to CFRelease() the pdfURL object. :-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.