Ok I have a status menu application with a "Hide" menu item in it.

Clicking on "Hide" calls:

[[NSStatusBar systemStatusBar] removeStatusItem:statusItem]

which of course removes my application from the status bar even though it is still running.

I want my application to be re-added into the system status bar when the user "opens" my application in the Applications folder. The problem is I can't insert the piece of code to do this inside "ApplicationDidFinishLaunching" since the application is already open. So what should I do?

link|improve this question

80% accept rate
Does this post help: stackoverflow.com/questions/843379/… – petert Nov 16 '11 at 8:57
feedback

1 Answer

up vote 2 down vote accepted

You could use -applicationDidBecomeActive:, though you need to distinguish between the cases where the application becomes active after it was hidden, and it became active after the user switched to a different app without hiding yours.

link|improve this answer
thank you. it works :) – dragoncharmer Nov 16 '11 at 9:34
feedback

Your Answer

 
or
required, but never shown

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