12345678910111213141516171819202122232425 |
- //
- // MoveMegAlert.h
- // smartRhino
- //
- // Created by niuzhen on 2020/4/30.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BSAlertView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MoveMegAlert : BSAlertView
- @property (weak, nonatomic) IBOutlet UIView *AlertView;
- @property (weak, nonatomic) IBOutlet UIButton *disBtn;
- @property (weak, nonatomic) IBOutlet UIButton *doneBtn;
- @property (weak, nonatomic) IBOutlet UIButton *cancelBtn;
- @property (copy, nonatomic) void(^DoneBlock)(void);
- + (instancetype)share;
- - (void)show;
- - (void)dismiss;
- @end
- NS_ASSUME_NONNULL_END
|