uilabel tail truncation

25,077

lineBreakMode is a switch. It can be either (for iOS6+) NSLineBreakByWordWrapping or NSLineBreakByTruncatingTail but not both.

But, to answer your question, you can find the size of some text using the class extensions in NSString+UIKit. Having found the size you could update the frame of the UILabel appropriately.

Share:
25,077
glogic
Author by

glogic

Updated on July 29, 2022

Comments

  • glogic
    glogic almost 2 years

    Im working on an ios app using objective c and i have an issue with uilabel that i could use some help with. Basically i have a label that can change size to fit the text that it will display but it has a max height that it can possible be. the label itself has a fixed width at all times. i have turned on UILineBreakModeWordWrap and UILineBreakModeTailTruncation to make the text fit and truncate but this causes the text to truncate the tail too early when it has only 1 word left to place. rather then moving it onto the next line when there is still room it just truncates it.

    self.frame = CGRectMake(self.frame.origin.x, self.frame.origin.y, fixedWidth, 0);
    self.lineBreakMode = UILineBreakModeWordWrap | UILineBreakModeTailTruncation;
    self.numberOfLines = 0;
    [self sizeToFit];
    

    is there anyway of finding when the uilabel is actually truncating the text so i can then check the label height and add to it if there is still room ? I tried always adding an extra line to the height when there is room and this avoids the early truncation but then im left with inconsistent sizing of the over all label. any ideas on this would be great thanks

  • glogic
    glogic over 12 years
    ended up getting the size that it would be from the link you provided (sizeWithFont:) and then set the linebreakmode to wordwrap or tail trunc depending if it was at max or not and then used sizetofit and worked great thanks
  • chakrit
    chakrit about 12 years
    Nice tip on that category. Didn't knew it existed before.
  • Stanislau Baranouski
    Stanislau Baranouski over 6 years
    +1 for unveiling "preferredMaxLayoutWidth" attribute. I have another case from topicstarter, but this attribute solved my issue.