KSProgressLoadingView.h 390 B

123456789101112131415161718192021222324
  1. //
  2. // KSProgressLoadingView.h
  3. // KulexiuSchoolStudent
  4. //
  5. // Created by 王智 on 2023/11/7.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface KSProgressLoadingView : UIView
  10. + (instancetype)shareInstance;
  11. - (void)configProgressWithText:(NSString *)tipsMessage progress:(NSInteger)progress;
  12. - (void)showLoadingView;
  13. - (void)hideLoadingView;
  14. @end
  15. NS_ASSUME_NONNULL_END