如何在iOS中使字符串的一部分变为粗体?

前端之家收集整理的这篇文章主要介绍了如何在iOS中使字符串的一部分变为粗体?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将文本字符串的一部分加粗.

例如:这是大胆的.这是正常的字符串.

Android中,可以通过使用spannable字符串轻松实现.在iOS中它的等价物是什么?

解决方法

是的,它可以通过 NSAttributedString实现:
NSString *yourString = @"This is to be bold. This is normal string.";
NSMutableAttributedString *yourAttributedString = [[NSMutableAttributedString alloc] initWithString:yourString];
NSString *boldString = @"This is to be bold";
NSRange boldRange = [yourString rangeOfString:boldString];
[yourAttributedString addAttribute: NSFontAttributeName value:[UIFont boldSystemFontOfSize:12] range:boldRange];
[yourLabel setAttributedText: yourAttributedString];
原文链接:https://www.f2er.com/iOS/333667.html

猜你在找的iOS相关文章