I have an NSStatusItem that displays an NSMenu full of NSView subclasses. I override drawRect: in my NSView subclass to implement highlighting in the NSMenu and everything works fine in the root menu, but for some reason it doesn't work in submenus of the root menu. I put some NSLog statements in my NSView subclasses drawRect: and noticed that it's not even being called for the views in the submenu. Any ideas?

I can post the code that I'm using to highlight the views, but I don't think that its necessary since drawRect: is not even being called. Let me know if there's any other code you need to see that might help.

link|improve this question

Did you connect the NSView subclasses to the submenus view? – Chance Hudson Jun 24 '11 at 4:34
Yes mouseDown: is still called when I click on the NSView's in the submenu, but drawRect: isn't being called. – edc1591 Jun 24 '11 at 4:48
Are your subviews set with NSMenuItem's setView:? – Simon Jun 28 '11 at 21:47
Yeah, they are. – edc1591 Jun 28 '11 at 22:06
feedback

2 Answers

Could you use NSMenuItem's setEnabled method to sort of jog the submenuItems awake?

link|improve this answer
Just tried that. drawRect: is still not being called for the items in the submenu. – edc1591 Jun 28 '11 at 20:44
feedback
up vote 0 down vote accepted

The problem seems to have resolved itself. I might have just forgot to set the view to use my NSView subclass.

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.