Re: Problem with updating NSProgressIndicator
Re: Problem with updating NSProgressIndicator
- Subject: Re: Problem with updating NSProgressIndicator
- From: "Vitaly Ovchinnikov" <email@hidden>
- Date: Wed, 21 May 2008 00:54:17 +0400
http://www.appsforlife.com/progress.zip (36Kb)
Idea is simple:
- (void) awakeFromNib
{
[progress setHidden:YES];
timer = [NSTimer init.....];
}
- (void) onTimer: (id) timer
{
[progress setDoubleValue:...];
[progress setHidden:NO]; // once or every timer cycle - doesn't
matter (in real project I call this once)
}
if we call -setHidden before -setDoubleValue - all work fine. In
attached project progress freezes immediately after start. At every
run.
Ideas?
_______________________________________________
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