123456789101112131415161718192021222324 |
- //
- // KSProgressLoadingView.h
- // KulexiuSchoolStudent
- //
- // Created by 王智 on 2023/11/7.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KSProgressLoadingView : UIView
- + (instancetype)shareInstance;
- - (void)configProgressWithText:(NSString *)tipsMessage progress:(NSInteger)progress;
- - (void)showLoadingView;
- - (void)hideLoadingView;
- @end
- NS_ASSUME_NONNULL_END
|