UILabel paragraph text alignment
For ios > 7.1 just set textAligment property to NSTextAlignmentJustified , without any third-part libraries:
UILabel *label = [UILabel alloc] init];
label.textAligment = NSTextAlignmentJustified;
UITextView and UILabel they dont provide such alignment. You can use UIWebview instead.
You can use <p style="text-align:justify">Your text goes here.</p>
This might be helpful.