Is't there a "NSActivityIndicatorView" for Mac OS X like the UIActivityIndicatorView for iOS?
How can I show a spinning "gear" during long activities?
You can use NSProgressIndicator.
Here is an initialization of it.
NSProgressIndicator* indicator = [[[NSProgressIndicator alloc] initWithFrame:NSMakeRect(20, 20, 30, 30)] autorelease]; [indicator setStyle:NSProgressIndicatorSpinningStyle];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With