我正在尝试设置数组中所有范围的颜色,但出现此错误。我不明白为什么。范围均有效。我什至尝试手动插入范围进行测试。谢谢。

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 = @"";

最佳答案

该代码示例与您尝试构建的代码完全相同吗?我非常确定NSForegroundColorAttributeName仅在Mac OS X SDK和iOS 6.0及更高版本中可用,因此示例代码甚至都不应编译。

相反,您想要的可能是kCTForegroundColorAttributeName,并传递CGColorRef而不是NSColor

[string addAttribute:(id)kCTForegroundColorAttributeName
               value:(id)[UIColor redColor].CGColor
               range:NSRangeFromString(s)];

但是我不确定这是否真的是无效上下文错误的原因。

10-04 13:42