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

What property should I change to do this.

Thanks In Advance

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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

link|improve this answer
thanx for your concern. But I want to justify the paragraph(check this image) homeandlearn.co.uk/word2007_2010/images/clipart/justify.gif – yohan.jayarathna Aug 9 '11 at 12:13
I want to make paragraph like this. dev.opera.com/articles/view/11-typography-on-the-web/… – yohan.jayarathna Aug 9 '11 at 12:15
in iOS for UITextView you have only 3 ways to align text as far as i know. Not sure what the 4th is? is it Microsoft word? – Srikar Aug 9 '11 at 12:18
yes it is ms word image which for explain my requirement :) check second image it shows the way I want to display my paragraph! – yohan.jayarathna Aug 9 '11 at 12:20
try the default text alignment iOS supports, maybe that will suffice? If there's no support,what can one do... Not sure you would want to go down the road to do your own layout handling for UITextView... – Srikar Aug 9 '11 at 12:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.