| 123456789101112131415161718192021222324252627282930313233 |
- //
- // MORemindAlertView.h
- // MiMoLive
- //
- // Created by MiMo on 2025/8/21.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^MORemindLeftButtonBlock)(BOOL notRemind);
- typedef void(^MORemindRightButtonBlock)(BOOL notRemind);
- @interface MORemindAlertView : UIView
- @property (nonatomic, copy) MORemindLeftButtonBlock leftButtonBlock;
- @property (nonatomic, copy) MORemindRightButtonBlock rightButtonBlock;
- @property (nonatomic, copy) NSString *titleText;
- @property (nonatomic, copy) NSString *remindText;
- @property (nonatomic, copy) NSString *leftButtonTitle;
- @property (nonatomic, copy) NSString *rightButtonTitle;
- - (void)show;
- - (void)showInView:(UIView *)superView;
- - (void)dismiss;
- - (void)hideRemindButton;
- @end
- NS_ASSUME_NONNULL_END
|