本文介绍了在uitextview中显示html文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在textview中显示HTML文字?
How can I display HTML text in textview?
例如,
string <h1>Krupal testing <span style="font-weight:
bold;">Customer WYWO</span></h1>
假设文本是粗体,因此它在textview中显示为粗体字符串
但我希望显示正常文本。这可以在iPhone SDK中使用吗?
Suppose text is bold so it display in textview as bold stringbut I want display normal text. Is this possible in the iPhone SDK?
推荐答案
在iOS 5-上使用UIWebView。
Use a UIWebView on iOS 5-.
在iOS 6+上你可以使用 UITextView.attributedString
,参见了解方法。
On iOS 6+ you can use UITextView.attributedString
, see https://stackoverflow.com/a/20996085 for how.
还有未记录的 - [UITextView setContentToHTMLString:]
方法。如果要提交到AppStore,请不要使用此选项。
There's also an undocumented -[UITextView setContentToHTMLString:]
method. Do not use this if you want to submit to AppStore.
这篇关于在uitextview中显示html文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!