12345678910111213141516171819202122232425262728 |
- //
- // ComontAlretType2ViewController.h
- // Private-x
- //
- // Created by xd h on 2024/4/15.
- //
- #import "BaseViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 点击确定
- */
- typedef void (^CommonAlertType2_ClickOkBtn) (void);
- /**
- * 点击取消
- */
- typedef void (^CommonAlertType2_ClickCancelBtn) (void);
- typedef void (^CommonAlertType2_ClickOtherBtn) (void);
- @interface ComontAlretType2ViewController : BaseViewController
- - (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;
- @end
- NS_ASSUME_NONNULL_END
|