MOSignInAlertView.h 485 B

123456789101112131415161718192021222324252627
  1. //
  2. // MOSignInAlertView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/5/31.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "MOSignDataModels.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOSignInAlertView : UIView
  11. @property (nonatomic, assign) BOOL isGet;
  12. @property (nonatomic, strong) MOSignBaseData *baseData;
  13. @property (nonatomic, copy) void (^toTaskWebBlock)(void);
  14. + (instancetype)moSignInAlertView;
  15. - (void)showSignInAlertView;
  16. - (void)dismissSignInAlertView;
  17. @end
  18. NS_ASSUME_NONNULL_END