vote up 4 vote down star
3

Hi,

I have an UILabel with two lines. Sometimes it's text is short. Then the text gets displayed in the center (vertically) of the UILabel.

How do I align my text at the top (vertically)?

alt text

Regards...

flag

67% accept rate

1 Answer

vote up 4 vote down check

Resize the frame for the label using the text you want to insert. That way you can accommodate any number of lines.

    CGSize maximumSize = CGSizeMake(300, 9999);
    NSString *dateString = @"The date today is January 1st, 1999";
    UIFont *dateFont = [UIFont fontWithName:@"Helvetica" size:14];
    CGSize dateStringSize = [dateString sizeWithFont:dateFont 
        constrainedToSize:maximumSize 
        lineBreakMode:self.dateLabel.lineBreakMode];

    CGRect dateFrame = CGRectMake(10, 10, 300, dateStringSize.height);

    self.dateLabel.frame = dateFrame;

This page has some different code for the same solution:

http://discussions.apple.com/thread.jspa?threadID=1759957

link|flag

Your Answer

Get an OpenID
or

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