When the text of a UILabel gets truncated there are 3 dots inserted by default. Is it possible to change these characters or disable them?
UILabel
Look at -[UILabel setLineBreakMode:] and UILineBreakModeCharacterWrap. The default value of -[UILabel lineBreakMode] is UILineBreakModeTailTruncation, which causes the ellipsis at the end.
-[UILabel setLineBreakMode:]
UILineBreakModeCharacterWrap
-[UILabel lineBreakMode]
UILineBreakModeTailTruncation