| 1234567891011121314151617181920212223242526272829303132 |
- //
- // MOChooseTimeAlertView.h
- // MiMoLive
- //
- // Created by SuperC on 2023/12/13.
- //
- #import <UIKit/UIKit.h>
- #import "MOChooseTimeCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MOChooseTimeAlertView : UIView
- @property (nonatomic, strong) NSArray *dataArr;
- @property (nonatomic, assign) NSInteger selectIndex;
- @property (nonatomic, copy) NSString *titleText;
- @property (nonatomic, copy) NSString *topTipText;
- @property (nonatomic, copy) NSString *bottomTipText;
- @property (nonatomic, copy) void (^confirmBtnBlock)(NSInteger index);
- + (instancetype)moChooseTimeAlertView;
- - (void)showChooseTimeAlertView;
- - (void)dismissChooseTimeAlertView;
- @end
- NS_ASSUME_NONNULL_END
|