1234567891011121314151617181920212223 |
- //
- // CMWarnHUD.h
- // PBSDK_Example
- //
- // Created by 陈民 on 2024/12/16.
- // Copyright © 2024 uxiume. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CMWarnHUD : NSObject
- + (instancetype)sharedInstance;
- - (void)loading:(UIViewController*)controller;//不可操作loading
- - (void)canDoLoading:(UIViewController*)controller;//可操作loading
- - (void)hideLoading;
- - (void)showMessage:(NSString*)message;
- - (void)showSuccess:(NSString*)message;
- - (void)showError:(NSString*)message;
- @end
- NS_ASSUME_NONNULL_END
|