为什么CGContextSetRGBStrokeColor不能在ios7上运行?

时间:2013-09-19 12:41:46

标签: text colors border ios7 stroke

我有一个问题要在iOS7上使用文本笔画... iOS4 iOS5和iOS6的一切都很好但是因为我更新了iOS7的设备,所以我看不到笔触颜色。有没有人知道如何做到这一点?

这是我的代码:

UIGraphicsBeginImageContext(CGSizeMake(scale(line.position.width), scale(line.position.height)));

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetLineWidth (context, scale(4.0)); //4.0

CGContextSetLineJoin(context, kCGLineJoinRound);
CGContextSetBlendMode(context, kCGBlendModeScreen);
CGContextSetTextDrawingMode(context, kCGTextFillStroke);
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 1.0);
CGContextSetRGBStrokeColor(context, 0.0, 0.0, 0.0, 1.0);
[label.text drawInRect:label.frame withFont:label.font];

self.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

2 个答案:

答案 0 :(得分:3)

我刚碰到这个。在iOS 7上,似乎使用CGContextSetRGBFillColor代替CGContextSetRGBStrokeColor来设置笔触颜色。看起来像个bug。这意味着没有办法使用CGContextSetTextDrawingMode(context,kCGTextFillStroke);因为笔触颜色与填充颜色相同。

我通过添加第二个drawInRect调用来修改您的代码。这个解决方案也是向后兼容的,因为它只是重新敲击笔划一个额外的时间,如果他们修复了这个bug,也应该向前兼容:

UIGraphicsBeginImageContext(CGSizeMake(scale(line.position.width), scale(line.position.height)));

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetLineWidth (context, scale(4.0)); //4.0

CGContextSetLineJoin(context, kCGLineJoinRound);
CGContextSetBlendMode(context, kCGBlendModeScreen);
CGContextSetTextDrawingMode(context, kCGTextFillStroke);
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 1.0);
CGContextSetRGBStrokeColor(context, 0.0, 0.0, 0.0, 1.0);
[label.text drawInRect:label.frame withFont:label.font];


//New Code Start
CGContextSetTextDrawingMode(context, kCGTextStroke);
CGContextSetRGBFillColor(context, 0.0, 0.0, 0.0, 1.0);
[label.text drawInRect:label.frame withFont:label.font];
//New Code End

self.image = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

答案 1 :(得分:2)

注意到与iOS7相同的明显回归,不推荐使用drawInRect withFont API。使用推荐的'withAttributes'风格。

NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:largeFont,NSFontAttributeName, [UIColor whiteColor],NSForegroundColorAttributeName,[UIColor blackColor], NSStrokeColorAttributeName,nil];

[myString drawAtPoint:myPosition withAttributes:dictionary];