Let's say I have a NStableView
column with ThisIsMyVeryVeryLongName
header title.
When I reduce the width of column by resizing, it usually shows like this ThisIsMyVery...
(showing extra info is on the right side).
How do I change this to ...VeryLongName
upon column width reduction.
(right
alignment doesn't seem to work)
On UILabel you can set Line break to Truncate Head
. This will do what you need.
yourLabel.lineBreakMode = .byTruncatingHead