MOChooseTimeAlertView.h 675 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MOChooseTimeAlertView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/12/13.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "MOChooseTimeCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOChooseTimeAlertView : UIView
  11. @property (nonatomic, strong) NSArray *dataArr;
  12. @property (nonatomic, assign) NSInteger selectIndex;
  13. @property (nonatomic, copy) NSString *titleText;
  14. @property (nonatomic, copy) NSString *topTipText;
  15. @property (nonatomic, copy) NSString *bottomTipText;
  16. @property (nonatomic, copy) void (^confirmBtnBlock)(NSInteger index);
  17. + (instancetype)moChooseTimeAlertView;
  18. - (void)showChooseTimeAlertView;
  19. - (void)dismissChooseTimeAlertView;
  20. @end
  21. NS_ASSUME_NONNULL_END