I write a function to calculate the end index of attributtedString in a rect,

But it seems some memory leak, Please help me to fix it.

CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)attributtedString);

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

CTFrameRef frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(currentIndex, 0), path, NULL);

CFRange frameRange = CTFrameGetVisibleStringRange(frame);
endIndex += frameRange.length;

CFRelease(frame);
CFRelease(path);
CFRelease(framesetter);

thanks in advance.

link|improve this question

41% accept rate
1  
on a device or on the simulator? If it's on the simulator, test again on a real device; the simulator sometimes gives false readings. – deanWombourne Jun 15 '11 at 15:43
@deanWombourne. I check in simulator and Activity Monitor it shows real memory is increasing. and When I check it in device the process end without any message. – NaveenShan Jun 16 '11 at 7:20
1  
Then I think your problem is that it doesn't work on a device - Id worry about the memory usage later! – deanWombourne Jun 16 '11 at 9:08
@deanWombourne. ya It not work in device. my exact need is to create a NSAttributtedString see this stackoverflow.com/questions/6345780/… – NaveenShan Jun 16 '11 at 9:23
@deanWombourne, I found that it works fine when I put it as IPA on device. while on device debug it still show memory leaks and cause crash – NaveenShan Jun 23 '11 at 12:18
show 1 more comment
feedback

1 Answer

There is no memory leak in the above example. As far as we can see you are releasing everything properly.

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.