Re: Determinate NSProgressIndicator without animation?
Re: Determinate NSProgressIndicator without animation?
- Subject: Re: Determinate NSProgressIndicator without animation?
- From: Nicolai <email@hidden>
- Date: Sat, 15 Sep 2001 15:33:06 +0200
I've never done this before.
Could you tell me what I have to do?
Regards, Nicolai.
So why not subclass NSProgressIndicator to create a percentage
widget?
I've done it.
Just create the subclass and override the following:
- (void)startAnimation:(id)sender
{
}
- (void)stopAnimation:(id)sender
{
}
- (void)animate:(id)sender
{
}
Remove the drawRect method from the template PB provides.
Voila, done.