UITextView Rich text?

前端 未结 3 902
你的背包
你的背包 2021-01-01 03:02

I was wondering if UITextView can display rich text? I want to have simple formatting on my read only text (like different alignment for different parts of the text). if not

3条回答
  •  失恋的感觉
    2021-01-01 03:26

    Generally, the best way to do this is to use a UIWebView and load local content in where you can insert tags and whatever else you need. Local loading should be fast and you can stylize it to look like any uitextview

    Another option is to use a UILabel subclass instead and get the Three20 open-souce code. You want the TTStyledTextLabel.

提交回复
热议问题