我试图用2种字体创建属性字符串是正常的,第二种是粗体。
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:message];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue" size:10.0] range:firstRange];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:10.0] range:secondRange];
但它显示所有正常文字的文字。我确定范围不一样。 如何在1个标签中显示正常和粗体。