NSProgressIndicator
has methods called startAnimation:
and stopAnimation:
, but no method that I can find to check the state (whether it is currently animating or not). How would you do it?
You could just keep a BOOL
value somewhere in your class that you set to YES
or NO
when you start and stop the animation respectively.