I want to programatically change an NSMenuItem's title, but ellipsize it so that this modification never causes the menu to increase in width. how can i do this?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You have to do this yourself. NSString has some methods added by AppKit for determining the length of a string, given a certain font, etc. If you find the string is too long, remove a chunk from the middle, measure again, and keep doing that until the string is short enough.

However, this might be overkill, since NSMenuItem will "ellipsize" the title automatically (although this can result in super-wide menus)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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