views:

67

answers:

1

I have an NSMenu instance, through which all communication with the Cocoa app will take place. If the menu is open, the background doesn't run, so how can I force an update while the menu is still active?

A: 

See http://stackoverflow.com/questions/2232476/force-nsmenu-nested-submenu-update-for-main-menu-of-cocoa-app and run that method in the background. (Don't forget to create an NSAutoreleasePool.)

Alexsander Akers