In my application, i have a UITextView with many lines, but I need the data with proper appearance.
Is it possible to have Justified Alignment in
There is another option. CATextLayer.
It supports justified alignement explicitly.
And it's a lot lightweight and faster than UIWebView. Because it's essentially a thin layer over CoreText, so does not require heavy layout process like UIWebView.
Or you can use one more another option, just using lower level CoreText framework directly.
Anyway, they doesn't support text editing. If you need it, you have to implement it all yourself.