Search code examples
objective-ciosuilabeluitextviewtext-alignment

UILabel paragraph text alignment


I am working on an Iphone application and I need to display a large text. I need it to have a paragraph alignment. Please refer to the picture below for explanation.

I tried to use UILabel and UITextView but couldn't find the property to do it.

enter image description here


Solution

  • Use TTTAttributedLabel NSAtributedString label which has UITextAlignmentJustify

     yourTTTAttributedLabel.textAlignment = UITextAlignmentJustify; 
    

    Also another alternative is use OHAttributedLabel NSAtributedString label which has UITextAlignmentJustify

     yourOHAttributedLabel.textAlignment = UITextAlignmentJustify;