Permalink
Cannot retrieve contributors at this time
Jump to Line
Fetching contributors…
| /** | |
| * 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 | |