Re: NSProgressIndicator (bar) still displays when stopped
Re: NSProgressIndicator (bar) still displays when stopped
- Subject: Re: NSProgressIndicator (bar) still displays when stopped
- From: Keary Suska <email@hidden>
- Date: Fri, 08 Aug 2014 07:58:28 -0600
On Aug 7, 2014, at 10:23 PM, Daryle Walker <email@hidden> wrote:
> have a bar-style NSProgressIndicator that has its “Display When Stopped” turned off and (initially) Indeterminate turned on. It (almost) properly updates when a load is going on:
>
> //=====
> - (void)notifyOnProgressStarted:(NSNotification *)notification // WebViewProgressStartedNotification
> {
> [self.loadingProgress startAnimation:self];
> }
>
> - (void)notifyOnProgressChanged:(NSNotification *)notification // WebViewProgressEstimateChangedNotification
> {
> [self.loadingProgress setIndeterminate:NO];
> [self.loadingProgress setDoubleValue:self.webView.estimatedProgress];
> }
>
> - (void)notifyOnProgressFinished:(NSNotification *)notification // WebViewProgressFinishedNotification
> {
> [self.loadingProgress stopAnimation:self];
> }
> //=====
>
> However, the bar is still shown after the download finishes. It goes away when I either turn off and back on the top content border it sits on or if I change the display status of the toolbar above it. Changing the bar back to indeterminate (in the Finishing notification) makes no difference.
Is the progress indicator loaded from a xib, with your initial settings? If so I would double-check the isDisplayedWhenStopped value at or after awakeFromNib. If the value is still NO, IIRC there has been a long-standing bug with NSProgressIndicator in certain views. Try calling [[self.loadingProgress superview] setNeedsDisplay:YES] after you stop animation. If that works, that will be confirmation that the bug still stands...
HTH,
Keary Suska
Esoteritech, Inc.
"Demystifying technology for your home or business"
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden