我想UIButton
用 RED 字垫更新名为 cardButton 的 iOS 标题。
这是我的代码:
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
谢谢!