DCUIViewControllerHUD.h 511 B

1234567891011121314151617181920
  1. //
  2. // DCViewControllerShowHUDProgress.h
  3. // DemoProject
  4. //
  5. // Created by nearwmy on 2018/6/19.
  6. // Copyright © 2018年 nearwmy. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DCUIViewControllerHUD : UIViewController
  10. @property (nonatomic) UIButton *progressHUD;
  11. @property (nonatomic) UIView *HUDContainer;
  12. @property (nonatomic) UIActivityIndicatorView *HUDIndicatorView;
  13. @property (nonatomic) UILabel *HUDLabel;
  14. - (void)showProgressHUD;
  15. - (void)hideProgressHUD;
  16. - (void)layoutProgressHUD;
  17. @end