ComontAlretType2ViewController.h 840 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ComontAlretType2ViewController.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/4/15.
  6. //
  7. #import "BaseViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. /**
  10. * 点击确定
  11. */
  12. typedef void (^CommonAlertType2_ClickOkBtn) (void);
  13. /**
  14. * 点击取消
  15. */
  16. typedef void (^CommonAlertType2_ClickCancelBtn) (void);
  17. typedef void (^CommonAlertType2_ClickOtherBtn) (void);
  18. @interface ComontAlretType2ViewController : BaseViewController
  19. - (id)initWithTitle:(NSString *)title msg:(NSString *)msg imageStr:(NSString *)images cancelTitle:(NSString *)cancelTitle okTitle:(NSString *)okTitle otherTitle:(NSString *)otherTitle isOkBtnHighlight:(BOOL)okBtnHighlight didClickOk:(CommonAlertType2_ClickOkBtn)ok didClickCancel:(CommonAlertType2_ClickCancelBtn)Cancel didClickOther:(CommonAlertType2_ClickOtherBtn)Other;
  20. @end
  21. NS_ASSUME_NONNULL_END