现在的位置: 首页 > 综合 > 正文

UIProgressHUD

2013年08月07日 ⁄ 综合 ⁄ 共 593字 ⁄ 字号 评论关闭

#import <UIKit/UIView.h>

 

@class UIImageView, UIProgressIndicator, UITextLabel, UIWindow;

 

@interface UIProgressHUD : UIView

{

     UIProgressIndicator *_progressIndicator;

     UITextLabel *_progressMessage;

     UIImageView *_doneView;

     UIWindow *_parentWindow;

     struct {

        unsigned int isShowing:1;

        unsigned int fixedFrame:1;

        unsigned int reserved:30;

    } _progressHUDFlags;

}

 

- (id)_progressIndicator;

- (id)initWithFrame:(struct CGRect)fp8;

- (void)setText:(id)fp8;

- (void)setFontSize:(int)fp8;

- (void)drawRect:(struct CGRect)fp8;

- (void)layoutSubviews;

- (void)showInView:(id)fp8;

- (void)hide;

- (void)done;

- (void)dealloc;

 

@end

抱歉!评论已关闭.