gpt4 book ai didi

ios - 无法在iOS中更改按钮标题样式:attributedString

转载 作者:行者123 更新时间:2023-12-01 18:18:43 27 4
gpt4 key购买 nike

我想使用红色字垫更新名为cardButton的iOS UIButton的标题。

这是我的代码:

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

谢谢!

最佳答案

更换

NSMutableAttributedString *mat = [card.contents mutableCopy];

有了这个 :
 NSMutableAttributedString *mat = [[NSMutableAttributedString alloc] initWithString:[card.contents mutableCopy]];

关于ios - 无法在iOS中更改按钮标题样式:attributedString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19022860/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com