1

我想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

谢谢!

4

1 回答 1

4

代替

NSMutableAttributedString *mat = [card.contents mutableCopy];

有了这个 :

 NSMutableAttributedString *mat = [[NSMutableAttributedString alloc] initWithString:[card.contents mutableCopy]];
于 2013-09-26T08:34:12.287 回答