ComontAlretViewController.h 527 B

1234567891011121314151617181920212223242526
  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. @end
  12. @interface ComontAlretViewController : BaseViewController
  13. @property (nonatomic,weak)id <ComontAlretViewControllerDelegate> delegate;
  14. - (id)initWithTiTle:(NSString *)title msg:(NSString *)msg cancelTitle:(NSString *)cancelTitle okTitle:(NSString *)okTitle;
  15. @end
  16. NS_ASSUME_NONNULL_END