Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible? Align the text fully justified? Does anyone know any hack or Interface Builder plugin?

Thanks!

share|improve this question

4 Answers

up vote 2 down vote accepted

You cannot do it using UITextView, or any others. When I need justified text, I construct an html and show it in a UIWebView.

share|improve this answer
Ok EEE, thanks a lot. I will try this but the problem is that Im extracting the data from an RSS feed and the extracted text comes with a lot of line breaks. I´ve tried to remove them using \n and \r but it doesnt work. Any ideas? – Amure Pinho Mar 4 '10 at 16:01

Here is the solution in my blog. I don't like use WebView. Also hyphenation word wrapper included.

share|improve this answer

From the definition of UITextAlignment it looks like you can't. Perhaps you can use the text drawing code to draw the text yourself, since you won't need interaction it shouldn't be too difficult.

share|improve this answer
Humn... But the text is dinamic, I get them from an RSS... Any idea? – Amure Pinho Mar 4 '10 at 16:05

You can do it using CoreText, yes, you will have a bit more of work, but it works like a charm. You can check this tutorial for that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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