drawAtPoint崩溃了iOS 8

时间:2014-10-03 17:24:01

标签: ios ios8 nsattributedstring

这个简单的drawAtPoint:withAttributes在iIOS7上工作正常但在iOS8上崩溃时访问权限不佳。我不能为我的生活找出正在发生的事情。

UIFont *font = [UIFont fontWithName:@"Helvetica" size:8];
UIColor *color = [UIColor blueColor];

CGContextSetTextDrawingMode (pdfContext, kCGTextFill);
CGContextSetFillColorWithColor(pdfContext, [color CGColor]);
CGContextSetShouldAntialias(pdfContext, YES);
CGContextSetShouldSmoothFonts(pdfContext, YES);

NSString *cardId = sharedCard.cardId;
[cardId drawAtPoint:CGPointMake(360, 602) withAttributes:@{NSFontAttributeName:font, NSForegroundColorAttributeName:color}];

1 个答案:

答案 0 :(得分:0)

异常是一个C ++异常,可以安全地忽略它。

将异常断点从所有异常更改为所有Objective-C异常,这应该解决此问题。