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?
NSProgressIndicator has methods called startAnimation: and stopAnimation: , but no method that I can
Share
You could just keep a
BOOLvalue somewhere in your class that you set toYESorNOwhen you start and stop the animation respectively.