如何在 UILabel 中将 NSString 的子字符串设置为粗体
可能的重复:
粗体和粗体单个 UILabel 中的非粗体文本?
我想知道如何在 UILabel
中将 NSString
的子字符串设置为粗体?
例如:我在 UILabel
中有一个字符串,
*Apply to a bill of $16 or more
我想将“$16”设为粗体。
谢谢....
Possible Duplicate:
Bold & Non-Bold Text In A Single UILabel?
I want to know that how can I set substring of a NSString
as bold in UILabel
?
for example : I have a string in UILabel
say,
*Apply to a bill of $16 or more
and I want to make " $16 " bold .
Thanks....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用 TTTAttributedLabel 它就非常适合您的目的。
Simply use TTTAttributedLabel It's perfect for your purpose.
您还可以 UIWebView 用于显示iPhone 中的内容丰富。
使用 UIWebView 显示富文本
You could also UIWebView for displaying rich content in iPhone.
Display Rich Text Using a UIWebView
你不能。 iOS 4 尚不支持 UILabel 中的富文本。
尝试此线程中的一些答案:具有基本富文本支持的 UILabel
You can't. iOS 4 does not support rich text in UILabel yet.
Try some of the answers in this thread: UILabel with basic rich text support