12345678910111213141516171819202122232425262728 |
- //
- // ComontAlretDeleteTypeViewController.h
- // 双子星云手机
- //
- // Created by xd h on 2024/7/9.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 点击确定
- */
- typedef void (^CommonAlertDelete_ClickOkBtn) (BOOL isDeleteAll);
- /**
- * 点击取消
- */
- typedef void (^CommonAlertDelete_ClickCancelBtn) (void);
- @interface ComontAlretDeleteTypeViewController : BaseViewController
- - (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;
- @end
- NS_ASSUME_NONNULL_END
|