当使用下面的代码片段时,我开始undefined / undeclared error
了
NSForegroundColorAttributeName
我的代码片段
NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:self.myDisplayTxt];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0,5)];
请告诉我