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.

I have a UILabel which has 4 lines. Its font size is 15 & autoshrink is enabled. It's minimum font size is 10.

When my text is too long then it automatically starts from first line. But when my text is too small then it starts from middle line.

How can I make sure the text always starts from first line, whether it's too long or too short?

share|improve this question
3  
Use UITextView in place of UILabel – P.J Dec 12 '12 at 14:20
1  
Indeed UILabel is made for a single line. – Ramy Al Zuhouri Dec 12 '12 at 14:23
If UILabel is made for a single line why does it have a numberOfLines property? ;-) – Matthias Bauch Dec 12 '12 at 15:19
How about: UILabel is made for a fixed number of lines. – Wienke Dec 12 '12 at 17:40

1 Answer

up vote 2 down vote accepted

I think what you're looking for is more a UITextView than a UILabel.

From Apple's doc :

UITextView displays a region that can contain multiple lines of editable text.

The editable part is optional. You can disable it, along with scrolling if you want to be close to a UILabel.

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.