I have a UILabel with space for two lines of text. Sometimes, when the text is too short, this text is displayed in the vertical center of the label.
How do I vertically align my text to be always at the top of the UILabel?

|
I have a How do I vertically align my text to be always at the top of the
|
|||||||||||||||||
|
|
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: |
|||||||||||||||||
|
|
1) Set the new text:
2) Set the
3) Set the frame of the label to the maximum size:
4) Call
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. |
|||||||||||||||||||||
|
|
Refering to the extension solution:
should be replaced by
Additional space is needed in every added newline, because iPhone Similarly, alignBottom should be updated too with a The following extension works for me:
Then call |
||||
|
|
|
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
|
|||||
|
|
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. |
|||||
|
|
In Interface Builder
In your code
Code Snippet:
|
||||
|
|
|
Instead of
|
|||||
|
|
Create a new class LabelTopAlign .h file
.m file
EditHere's a simpler implementation that does the same:
|
||||
|
|
|
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 If you do switch to using |
|||||
|
|
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 |
||||
|
|
|
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):
|
||||
|
|
|
Create a subclass of UILabel. Works like a charm:
As discussed here. |
||||
|
|
|
There is a solution here.. Include both VerticallyAlignedLabel.h and VerticallyAlignedLabel.m and set alignment using:
|
||||
|
|
|
No muss, no fuss
|
|||||||||
|
|
I've struggled with this one for a long time and I wanted to share my solution. This will give you a UILabel that will autoshrink text down to 0.5 scale and vertically center the text. These options are also available in Storyboard/IB.
|
||||
|
|
|
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:
|
||||
|
|
|
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! |
||||
|
|
|
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. |
||||
|
|
|
There are two ways to fix this problem.One is
But the second way is more reliable for this approach, i.e,
entering "\n" is not such a good thing but yes if you know the constraints and the size of the data going to be displayed, may be it work good but cannot be expandable if text is longer than size of the label. The Second way ultimately set the frame according to the size of the text going to be displayed. |
||||
|
|
|
I riffed off dalewking's suggestion and added a UIEdgeInset to allow for an adjustable margin. nice work around.
|
||||
|
|
|
If creating your own custom view is an option, you could do something like this:
|
||||
|
|
|
As long as you are not doing any complex task, you can use |
||||
|
|
|
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 |
||||
|
|
|
Subclass UILabel and constrain the drawing rectangle, like this:
I tried the solution involving newline padding and ran into incorrect behavior in some cases. In my experience, it's easier to constrain the drawing rect as above than mess with P.S. You can imagine easily supporting UIViewContentMode this way:
|
||||
|
|
|
In UILabel vertically text alignment is not possible. But, you can dynamically change the height of the label using You can use |
||||
|
|
|
My solution:
|
||||
|
|
|
I've used a lot of the methods above, and just want to add a quick-and-dirty approach I've used:
Make sure the number of newlines in the string will cause any text to fill the available vertical space, and set the UILabel to truncate any overflowing text. Because sometimes good enough is good enough. |
||||
|
|
|
I have faced this problem too, that's why i am putting my answer here . it' would be little similar to someone answer, but the really important thing is that this works good ..!!
|
||||
|
|
|
Try this !! Too manual but works perfect for me.
|
||||
|
|
|
Building on all the other solutions posted, I made a simple little UILabel subclass that will handle vertical alignment for you when setting its alignment property. This will also update the label on orientation changes as well, will constrain the height to the text, and keep the label's width at it's original size.
|
||||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.