| 123456789101112131415161718192021222324252627 |
- //
- // MOSignInAlertView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/5/31.
- //
- #import <UIKit/UIKit.h>
- #import "MOSignDataModels.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOSignInAlertView : UIView
- @property (nonatomic, assign) BOOL isGet;
- @property (nonatomic, strong) MOSignBaseData *baseData;
- @property (nonatomic, copy) void (^toTaskWebBlock)(void);
- + (instancetype)moSignInAlertView;
- - (void)showSignInAlertView;
- - (void)dismissSignInAlertView;
- @end
- NS_ASSUME_NONNULL_END
|