I have an application that is NSStatusItem.
It has several different modes, each of which requires the start of an external process, during which the icon just lights up and appears frozen.
I want to use a method -setImage:(or sensible facsimile) to display something in the "spinner" strings commonly seen in web applications and throughout OS X.
Is there any built-in method for this (for example, some kind of instance NSProgressIndicator?) Or do I need to manually display the animation by looping through the images?
In any case, how would you implement it?
source
share