这是参考OHAttributedLabel numberOfLines问题。我创建了OHAttributedLabel,并在设置attributedText时在应用程序中崩溃。标签上显示的文本可能是多行,因为它来自服务器。
有什么解决方案?

NSMutableAttributedString* attrStr = [NSMutableAttributedString attributedStringWithString:string];
[attrStr setTextColor:[UIColor colorWithRed:0.f green:0.f blue:0.5 alpha:1.f] range:[string rangeOfString:matchingStringPhone]];
            label.attributedText = attrStr;


在第二行崩溃。

最佳答案

编译器应警告您在类NSMutableAttributedString中没有setTextColor:range:方法。
我至少是这样做的。
您的?

也许你想打电话
-(void)setAttributes:(NSDictionary *)属性范围:(NSRange)aRange
???

08-19 03:07