A method identified as deprecated has been superseded and may become unsupported in the future.
This action method advances the progress animation of an indeterminate progress animator by one step. (Deprecated in Mac OS X v10.5 and later. NSProgressIndicator
no longer supports incrementing the animation using this method. Use the startAnimation:
and stopAnimation:
methods to perform animation of the progress indicator.)
- (void)animate:(id)sender
The object sending the message.
NSProgressIndicator.h
Returns the delay, in seconds, between animation steps for an indeterminate progress indicator. (Deprecated in Mac OS X v10.5 and later. Progress indicators no longer allow the animation delay to be set.)
- (NSTimeInterval)animationDelay
The delay between animation steps. By default, the animation delay is set to 1/12 of a second (5.0/60.0). A determinate progress indicator does not use the animation delay value.
NSProgressIndicator.h
Sets the delay, in seconds, between animation steps for an indeterminate progress indicator. (Deprecated in Mac OS X v10.5 and later. Progress indicators no longer allow the animation delay to be set.)
- (void)setAnimationDelay:(NSTimeInterval)delay
The number of seconds between animation steps. By default, the animation delay is set to 1/12 of a second (5.0/60.0). Setting the delay to a double value larger than 5.0/60.0 slows the animation, while setting the delay to a smaller value speeds it up. A determinate progress indicator does not use the animation delay value.
NSProgressIndicator.h
© 2008 Apple Inc. All Rights Reserved. (Last updated: 2008-03-11)