ComontAlretViewController.h 596 B

123456789101112131415161718192021222324252627
  1. //
  2. // ComontAlretViewController.h
  3. // 隐私保护
  4. //
  5. // Created by APPLE on 2023/8/30.
  6. //
  7. #import "BaseViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol ComontAlretViewControllerDelegate <NSObject>
  10. - (void)okBtnClickPressed;
  11. - (void)cancelBtnClickPressed;
  12. @end
  13. @interface ComontAlretViewController : BaseViewController
  14. @property (nonatomic,weak)id <ComontAlretViewControllerDelegate> delegate;
  15. - (id)initWithTiTle:(NSString *)title msg:(NSString *)msg cancelTitle:(NSString *)cancelTitle okTitle:(NSString *)okTitle isOkBtnHighlight:(BOOL)okBtnHighlight;
  16. @end
  17. NS_ASSUME_NONNULL_END