-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathUIProgressHUD.h
40 lines (36 loc) · 949 Bytes
/
UIProgressHUD.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* This header is generated by class-dump-z 0.1-11o.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*/
#import "UIProgressHUD.h"
//#import "UIKit-Structs.h"
#import <UIKit/UIView.h>
@class UIImageView, UILabel, UIProgressIndicator, UIWindow;
@interface UIProgressHUD : UIView {
UIProgressIndicator* _progressIndicator;
UILabel* _progressMessage;
UIImageView* _doneView;
UIWindow* _parentWindow;
struct {
unsigned isShowing : 1;
unsigned isShowingText : 1;
unsigned fixedFrame : 1;
unsigned reserved : 30;
} _progressHUDFlags;
}
-(id)_progressIndicator;
-(id)initWithFrame:(CGRect)frame;
-(void)setText:(id)text;
-(void)setShowsText:(BOOL)text;
-(void)setFontSize:(int)size;
-(void)drawRect:(CGRect)rect;
-(void)layoutSubviews;
-(void)showInView:(id)view;
-(void)hide;
-(void)done;
-(void)dealloc;
@end
@interface UIProgressHUD (Deprecated)
-(id)initWithWindow:(id)window;
-(void)show:(BOOL)show;
@end