2010-09-30 12:27:22 -05:00
|
|
|
//
|
2013-07-20 06:56:17 -05:00
|
|
|
// MGMProgressView.h
|
2010-09-30 12:27:22 -05:00
|
|
|
// VoiceMac
|
|
|
|
//
|
|
|
|
// Created by Mr. Gecko on 8/19/10.
|
2013-07-20 06:56:17 -05:00
|
|
|
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). http://mrgeckosmedia.com/
|
2010-09-30 12:27:22 -05:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface MGMProgressView : UIView {
|
|
|
|
UIActivityIndicatorView *progress;
|
|
|
|
UILabel *pleaseWaitField;
|
|
|
|
UILabel *progressField;
|
|
|
|
}
|
|
|
|
- (void)startProgess;
|
|
|
|
- (void)stopProgess;
|
|
|
|
- (void)setProgressTitle:(NSString *)theTitle;
|
|
|
|
@end
|