I'm writing an IOS program which uses custom fonts (CTFontManagerRegisterFontsForURL). I load the font, add it as a string attribute, create a framesetter, then a frame, and draw it to a context. I release everything i use. Instruments doesn't notice a leak but :

The memory used by the applications grows and doesn't shrink when using this function. The retain count of my font is 2 when i leave the function.

Here is the code :

CFMutableAttributedStringRef attributedStringRef = CFAttributedStringCreateMutable(kCFAllocatorDefault, 0);
CFAttributedStringBeginEditing(attributedStringRef);
CFAttributedStringReplaceString(attributedStringRef, CFRangeMake(0, 0), (CFStringRef)label.text);

font = CTFontCreateWithName((CFStringRef)label.fontName, label.fontHeight, NULL);

retain count of the font : 1

CFAttributedStringSetAttribute(attributedStringRef, CFRangeMake(0, label.text.length), kCTFontAttributeName, font);
CFAttributedStringEndEditing(attributedStringRef);

retain count of the font : 2

CGMutablePathRef path = CGPathCreateMutable();
CGPathAddRect(path, NULL, rect);

CFRelease(font);

retain count of the font : 1

CTFramesetterRef frameSetter = CTFramesetterCreateWithAttributedString(attributedStringRef); 

retain count of the font : 3

CFRelease(attributedStringRef);
CTFrameRef frame = CTFramesetterCreateFrame(frameSetter,
                                            CFRangeMake(0, 0),
                                            path, NULL);

retain count of the font : 5

CFRelease(frameSetter);

retain count of the font : 4

CTFrameDraw(frame, ctx);
CFRelease(frame);

retain count of the font : 2

CGPathRelease(path);

Is there some sort of cache ? I really need to flush the memory used by this font immediately.

P.S : I used CFGetRetainCount to get the retain count of the font.

Thanks !

link|improve this question
feedback

2 Answers

retainCount is useless. Don't call it.

If your app's memory is growing in a repeatable fashion, use Heapshot Analysis to figure out what is consuming memory. Leaks only reports objects that are no longer reachable -- objects whose address does not appear in any active regions of memory -- and, thus, leaks will not find many kinds of memory accretion.

This may be a case of a write-only cache; i.e. something somewhere is proactively caching stuff, but your code is written such that the cached copies are never retrieved. Without additional information -- the results of Heapshot Analysis, for starters -- it is hard to say.


I followed your tutorial, and it confirms that the permanent heap growth is due to the line "CTFramesetterRef frameSetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)string); ". OK -- you've confirmed what is leaking and where it is allocated, but not where the extra retain comes from. To that, turn on "Record reference counts" in the Allocations instrument and re-run the test. This will allow you to inspect the backtraces of every retain/release call on the offending object. There will be an extra retain in there; a retain not balanced by a release.

I'm guessing the context is somehow hanging on to it.

(I had already analyzed the memory and saw that it was occupied by this object, that's why i checked retain count.

The absolute retain count of an object is useless. That it is still in memory means that it is over-retained and the retain count, itself, can't really tell you anything more unless you also have the full backtrace of every single retain (and release) call on the object, which Instruments gives you.

link|improve this answer
I followed your tutorial, and it confirms that the permanent heap growth is due to the line "CTFramesetterRef frameSetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)string); ". (I had already analyzed the memory and saw that it was occupied by this object, that's why i checked retain count. – Ben Dec 15 '11 at 10:42
feedback

Have you run your code in Instrument (have you profile it).

The retain count of an object don't grows your memory usage it's just stating that more object are interested in that particular object.
If it get deallocated when it's suppose to be you don't care about the actual value of the retain count, often it's not what you are expecting, and Apple advise to not use the retainCount as a debugging tool because of that. It can give you a general idea of how much your object is in demand (retain by others) but that's it.

In instrument you have a tool call "Leaks" that is good at finding memory leak.

I often have seen object have a retain count of 2, when I was expecting them to have a retain count of 1, but they were deallocated where they were suppose to be.
If you have a retain count of 5 at the point just before you think it should get deallocated, that could be an indication that something is wrong, but not even a guaranty.

link|improve this answer
I ran it in Instruments, with Memory Allocation tool, and Memory Leaks tool. I don't get any memory leak, but, with the allocation tool, i can see that my font is still allocated (and my app memory usage is greater). My guess is that something is still retaining it, but what ? why ? and how can i force that releasing ? – Ben Dec 13 '11 at 16:28
from your code I would say that ctx is retaining it for it's personal use. Do you have only one in memory or while you run your code they are pilling up? – VinceBurn Dec 13 '11 at 16:36
ctx if obtained this way : UIGraphicsBeginImageContext, then UIGraphicsGetCurrentContext, then i call my method, and then i UIGraphicsGetImageFromCurrentImageContext and UIGraphicsEndImageContext. – Ben Dec 13 '11 at 16:46
if you go to an other screen, or when you remove that 'image' is your font still around in Instrument? – VinceBurn Dec 13 '11 at 16:51
Yes !! That's why i think my font may be in a sort of cache or something else – Ben Dec 13 '11 at 16:53
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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