I have an UILabel with two lines. Sometimes, when the text is short enough, this text is displayed in the vertical center of the UILabel.
How do I vertically align my text at the top of the UILabel?

|
I have an UILabel with two lines. Sometimes, when the text is short enough, this text is displayed in the vertical center of the UILabel. How do I vertically align my text at the top of the UILabel?
| |||||||||||||||
feedback
|
|
There's no way to set the vertical align on a Here's the quick and easy way to do this:
If you have a label with longer text that will make more than one line, set
Longer Version I'll make my label in code so that you can see what's going on. You can set up most of this in Interface Builder too. My setup is a View Based App with a background image I made in Photoshop to show margins (20 points). The label is an attractive orange color so you can see what's going on with the dimensions.
Some limitations of using
The label is still sized with a fixed top-left corner. You can save the original label's width in a variable and set it after
Note that
Some other things to note: Whether My Original Answer (for posterity/reference): This uses the Resize the frame for the label using the text you want to insert. That way you can accommodate any number of lines.
This page has some different code for the same solution: | |||||||||||||||||||
feedback
|
|
1) Set the new text:
2) Set the maximum number of lines to 0 (automatic):
3) Set the frame of the label to the maximum size:
4) Call sizeToFit to reduce the frame size so the contents just fit:
The labels frame is now just high and wide enough to fit your text. The top left should be unchanged. I have tested this only with top left aligned text. For other alignments, you might have to modify the frame afterwards. Also, my label has word wrapping enabled. | |||||||||||||||||||
feedback
|
|
Refering to the extension solution:
should be replaced by
Additional space is needed in every added newline, because iPhone UILabels' trailing carriage returns seems to be ignored :( Similarly, alignBottom should be updated too with a @" \n@%" in place of "\n@%" (for cycle initialization must be replaced by "for(int i=0..." too). The following extension works for me:
Then call | |||||||||||
feedback
|
|
Like the answer above, but it wasn't quite right, or easy to slap into code so I cleaned it up a bit. Add this extension either to it's own .h and .m file or just paste right above the implementation you intend to use it:
And then to use, put your text into the label, and then call the appropriate method to align it:
or
| |||||||||||
feedback
|
|
An even quicker (and dirtier) way to accomplish this is by setting the UILabel's line break mode to "Clip" and adding a fixed amount of newlines.
This solution won't work for everyone -- in particular, if you still want to show "..." at the end of your string if it exceeds the number of lines you're showing, you'll need to use one of the longer bits of code -- but for a lot of cases this'll get you what you need. | |||||||||
feedback
|
|
Create a new class LabelTopAlign .h file
.m file
| |||
|
feedback
|
|
In Interface Builder
In your code
Code Snippet:
| |||||
|
feedback
|
|
I took a while to read the code, as well as the code in the introduced page, and found that they all try to modify the frame size of label, so that the default center vertical alignment would not appear. however, in some cases we do want the label to occupy all those spaces, even if the label does have so much text (e.g. multiple rows with equal height) here, I used an alternative way to solve it, by simply pad newlines to the end of label (pls note that I actually inherited the UILabel, but it is not necessary):
| |||
|
feedback
|
|
I wrote a util function to achieve this purpose. You can take a look:
// adjust the height of a multi-line label to make it align vertical with top
+ (void) alignLabelWithTop:(UILabel *)label {
CGSize maxSize = CGSizeMake(label.frame.size.width, 999);
label.adjustsFontSizeToFitWidth = NO;
// get actual height
CGSize actualSize = [label.text sizeWithFont:label.font constrainedToSize:maxSize lineBreakMode:label.lineBreakMode];
CGRect rect = label.frame;
rect.size.height = actualSize.height;
label.frame = rect;
}
.How to use? (If lblHello is created by Interface builder, so I skip some UILabel attributes detail) lblHello.text = @"Hello World! Hello World! Hello World! Hello World! Hello World! Hello World! Hello World! Hello World!"; lblHello.numberOfLines = 5; [Utils alignLabelWithTop:lblHello]; I also wrote it on my blog as an article: http://fstoke.me/blog/?p=2819 | ||||
|
feedback
|
|
I took the suggestions here and created a view which can wrap a UILabel and will size it and set the number of lines so that it is top aligned. Simply put a UILabel as a subview:
| |||
|
feedback
|
|
There is a solution here.. http://discussions.apple.com/message.jspa?messageID=10270072#10270072 Include both VerticallyAlignedLabel.h and VerticallyAlignedLabel.m and set alignment using this method.
| |||
|
feedback
|
|
Create a subclass of UILabel. Works like a charm:
As discussed here. | |||
|
feedback
|
|
I wanted to have a label which was able to have multi-lines, a minimum font size, and centred both horizontally and vertically in it's parent view. I added my label programmatically to my view:
And then when I wanted to change the text of my label...
Hope that helps someone! | |||
|
feedback
|
|
I riffed off dalewking's suggestion and added a UIEdgeInset to allow for an adjustable margin. nice work around.
| |||
|
feedback
|
|
for anyone reading this because the text inside your label is not vertically centered, keep in mind that some font types are not designed equally. for example, if you create a label with zapfino size 16, you will see the text is not perfectly centered vertically. however, working with helvetica will vertically center your text. | |||
|
feedback
|
|
If creating your own custom view is an option, you could do something like this:
| |||
|
feedback
|
|
Just in case it's of any help to anyone, I had the same problem but was able to solve the issue simply by switching from using UILabel to using UITextView. I appreciate this isn't for everyone because the functionality is a bit different. If you do switch to using UITextView, you can turn off all the Scroll View properties as well as User Interaction Enabled... This will force it to act more like a label. | |||
feedback
|
|
Instead of
| |||
|
feedback
|
|
My solution:
| ||||
|
feedback
|
|
As long as you are not doing any complex task, you can use | |||
|
feedback
|
|
I was working on that particular problem as well, so I've taken the ideas by D.S. and nevan king and basically combined them into a subclass that implements a vertical alignment property, which also allows you to change the alignment more than just once. It borrows the From what I've seen, There it is: QALabel on GitHub | |||
|
feedback
|
|
In UILabel vertically text alignment is not possible. But, you can dynamically change the height of the label using sizeWithFont: method of NSString, and just set its x and y as you want. You can use UITextField. It supports the contentVerticalAlignment peoperty as it is a subclass of UIControl. You have to set its userInteractionEnabled to NO to prevent user from typing text on it. | |||
|
feedback
|
|
No muss, no fuss
| |||
|
feedback
|