Search code examples
iphoneobjective-cxcodeuitextviewtext-justify

UItextView Justify Paragraph in Iphone


I want to justify a paragraph using UITextView in an iPhone using xCode.

What property should I change to do this.

Thanks In Advance


Solution

  • Photo says it all. You could use the Alignment control to left, center or right justify text.

    By the way this is got when you go to Interface builder, select that UItextView & then set these properties...

    From code you could do - [yourTextView setTextAlignment:<#(UITextAlignment)#>

    enter image description here