In my application, i have a UITextView with many lines, but I need the data with proper appearance.
UITextView
Is it possible to have Justified Alignment in
I know it's an old question but now we have news about :
UITextView *textView = // init your text view textView.textAlignment = NSTextAlignmentJustified;
And that's it !
UPDATE: This only works on iOS 6 and above