/NSProgressIndicator+Extras.m
http://github.com/bububa/MongoHub-Mac · Objective C · 24 lines · 11 code · 6 blank · 7 comment · 0 complexity · fcc03b3e6ed995faf7528a24b472442a MD5 · raw file
- //
- // NSProgressIndicator+Extras.m
- // MongoHub
- //
- // Created by Syd on 10-12-22.
- // Copyright 2010 ThePeppersStudio.COM. All rights reserved.
- //
- #import "NSProgressIndicator+Extras.h"
- @implementation NSProgressIndicator (Extras)
- - (void)start {
- [self startAnimation:self];
- [self setHidden:NO];
- }
- - (void)stop {
- [self setHidden:YES];
- [self stopAnimation:self];
- }
- @end