我正在使用以下详细信息生成PDF,在“仪器我正在发生内存泄漏”中,谁能知道为什么仪器指向CTFontRef至100 perc泄漏。

NSMutableAttributedString *string = [[[NSMutableAttributedString alloc]
                                                 initWithString:textToDraw] autorelease];
CTFontRef helveticaBold = CTFontCreateWithName(CFSTR("Helvetica-Bold"), 8.0, NULL);

[string addAttribute:(id)kCTFontAttributeName
                       value:(id)helveticaBold
                       range:NSMakeRange(0, [string length])];

最佳答案

试试这个(假设ARC):

[string addAttribute:(NSString *)kCTFontAttributeName
               value:CFBridgingRelease(helveticaBold)
               range:NSMakeRange(0, [string length])];

关于ios - 由于CTFontRef而导致的内存泄漏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14685410/

10-12 14:39