我正在尝试设置数组中所有范围的颜色但是我收到此错误。我不明白为什么。范围都是有效的。我甚至尝试手动插入一个范围来测试它。谢谢。
CGContextSetFillColorWithColor:无效的上下文0x0
NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:tv.text];
for (NSString * s in array) {
[string addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSRangeFromString(s)];
}
CATextLayer *textlayer = [[CATextLayer alloc]init];
textlayer.frame = CGRectMake(0, 0, 320, 480);
[self.view.layer addSublayer:textlayer];
textlayer.string = @"aString"; //works
textlayer.string = string; //does not work
tv.text = @"";
答案 0 :(得分:9)
代码示例与您尝试构建的代码完全相同吗?我非常肯定NSForegroundColorAttributeName
仅适用于Mac OS X SDK和iOS 6.0及更高版本,所以示例代码甚至不应该编译。
您想要的可能是kCTForegroundColorAttributeName
并传递CGColorRef
而不是NSColor
。
[string addAttribute:(id)kCTForegroundColorAttributeName
value:(id)[UIColor redColor].CGColor
range:NSRangeFromString(s)];
但我不确定这是否真的是无效上下文错误的原因。
答案 1 :(得分:0)
您的背景错误,而不是您的范围。你试图设置没有颜色的东西的颜色。