mactalent
mactalent

Reputation: 971

UITextView Alignment Problem

I have an UITextView with many lines of text but there is no option for the text Alignment Justified? So how to Justified the text so it look proper.

Upvotes: 0

Views: 1107

Answers (2)

Thomas Decaux
Thomas Decaux

Reputation: 22651

Its crazy but there is no simple solution, you have to measure your text height and set the origin y of your UITextView, there are a lot of such codes on Internet.

Upvotes: 0

Noah Witherspoon
Noah Witherspoon

Reputation: 57149

You'll probably have to use a UIWebView with some formatted HTML—UITextView's styling options are pretty limited.

Upvotes: 1

Related Questions