I have a custom view for an NSMenuItem that contains an NSButton. The title of the button is determined at runtime and I'd like to adjust the frame of the button so that the content (button title) always fits.

I'm aware of [NSAttributedString boundingRectWithSize:options:], but I'm wondering if there's a built-in way to do this for NSButtons or even on the NSView level.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

NSButton inherits NSControl's -sizeToFit method, which may provide what you're looking for.

link|improve this answer
And again the NSGod has saved me! Thanks – Mark Sep 14 '11 at 13:24
feedback

Your Answer

 
or
required, but never shown

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