Is there any way to 'justify' the text in a UITextView in an iOS app?

link|improve this question

29% accept rate
Not out-of-the-box. See duplicate post: stackoverflow.com/questions/402339/…. – petert Jul 26 '11 at 7:57
feedback

1 Answer

up vote 1 down vote accepted

No that's not possible in a UITextView. There are two ways to achieve this.

  1. Write a method that adusts the text with spaces in a way that it fits the textview exactely
  2. Use CATextLayer. That class has a property to set the alignment to Justifiy.

I hope this helps you out.

Sandro Meier

link|improve this answer
Like the possible use of CATextLayer - I'll try this myself! +1 – petert Jul 26 '11 at 8:07
Thanks. I did it myself. But if the layer has not a big width, the result looks ugly... – Sandro Meier Jul 26 '11 at 8:25
I followed this approach and did it view UILabel and drawRect: furbo.org/2008/10/07/fancy-uilabels – petert Jul 26 '11 at 11:37
feedback

Your Answer

 
or
required, but never shown

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