Reputation: 971
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
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
Reputation: 57149
You'll probably have to use a UIWebView
with some formatted HTML—UITextView's styling options are pretty limited.
Upvotes: 1