So I have a UILabel and I’ve set it’s line break mode to clip, but I don’t see the … at the end, instead it just truncates/cut the text at the point where it overflows. Is there any other part of the code that I need to set?
Here’s how I am doing it:
[self.newsFeedHeadingTitle_ setLineBreakMode:UILineBreakModeClip];
Set it to “UILineBreakModeTailTruncation” if you want the dots at the end of the string.