ComontAlretDeleteTypeViewController.h 750 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ComontAlretDeleteTypeViewController.h
  3. // Private-X
  4. //
  5. // Created by xd h on 2024/7/9.
  6. //
  7. #import "BaseViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. /**
  10. * 点击确定
  11. */
  12. typedef void (^CommonAlertDelete_ClickOkBtn) (BOOL isDeleteAll);
  13. /**
  14. * 点击取消
  15. */
  16. typedef void (^CommonAlertDelete_ClickCancelBtn) (void);
  17. @interface ComontAlretDeleteTypeViewController : BaseViewController
  18. - (id)initWithTitle:(NSString *)title msg:(NSString *)msg imageStr:(NSString *)images cancelTitle:(NSString *)cancelTitle okTitle:(NSString *)okTitle otherTitle:(NSString *)otherTitle isOkBtnHighlight:(BOOL)okBtnHighlight didClickOk:(CommonAlertDelete_ClickOkBtn)ok didClickCancel:(CommonAlertDelete_ClickCancelBtn)Cancel;
  19. @end
  20. NS_ASSUME_NONNULL_END