Vad
Vad

Reputation: 3740

Display Rich Text Content as UIWebView or UILabel+CoreText

I'd like to display rich text content in my app. I want user to create simple WYSIWYG input with support of bold, italics, shadow, outline, image HTML-like tags. I am puzzled if I should go with UIWebView or custom written UILabel/UIView which can have CoreText framework added to support all those above stated properties. I see there are libraries which are using both approaches.

Does anyone have an experience dealing with these approaches who can suggest cons and pros? Thanks

Upvotes: 1

Views: 1011

Answers (1)

Wain
Wain

Reputation: 119031

The web view approach has quite an overhead and likely a delay to display the rendered text. I would recommend using DTCoreText.

Upvotes: 1

Related Questions