1234567891011121314151617181920 |
- #import <UIKit/UIKit.h>
- @interface DCUIViewControllerHUD : UIViewController
- @property (nonatomic) UIButton *progressHUD;
- @property (nonatomic) UIView *HUDContainer;
- @property (nonatomic) UIActivityIndicatorView *HUDIndicatorView;
- @property (nonatomic) UILabel *HUDLabel;
- - (void)showProgressHUD;
- - (void)hideProgressHUD;
- - (void)layoutProgressHUD;
- @end
|