我想更新名为cardButton的iOS UIButton
的标题,并使用RED字垫。
这是我的代码:
NSMutableAttributedString *mat = [card.contents mutableCopy];
NSInteger _stringLength=[mat length];
UIColor *color;
color = [UIColor redColor];
[mat addAttribute:NSForegroundColorAttributeName value:color range:NSMakeRange(0, _stringLength)];
[cardButton setAttributedTitle: mat forState:UIControlStateNormal];
NSLog
返回单词mat的正确单词。
我有以下错误。我知道内存管理存在问题,但我不知道是什么。
-[__NSCFString addAttribute:value:range:]: unrecognized selector sent to instance 0x7177370
谢谢!
答案 0 :(得分:4)
替换
NSMutableAttributedString *mat = [card.contents mutableCopy];
用这个:
NSMutableAttributedString *mat = [[NSMutableAttributedString alloc] initWithString:[card.contents mutableCopy]];