Hi,
I've added an NSProgressIndicator to the splash screen of my app (since it can take a while to locate the resources necessary to load the main window). I wanted to have a "Bar" type indicator but nothing I've been able to do will make it move as it should. When I change it to the "Spinning" type, it works just fine but the Bar just sits there.
The indicator is connected to the app controller via:
. . . and this is the code that runs it:
Any ideas?
-- Mark
I've added an NSProgressIndicator to the splash screen of my app (since it can take a while to locate the resources necessary to load the main window). I wanted to have a "Bar" type indicator but nothing I've been able to do will make it move as it should. When I change it to the "Spinning" type, it works just fine but the Bar just sits there.
The indicator is connected to the app controller via:
Code:
IBOutlet NSProgressIndicator * splashProgress;
. . . and this is the code that runs it:
Code:
[splashProgress setHidden: NO];
[splashProgress startAnimation: self];
Any ideas?
-- Mark