// // ComontAlretViewController.h // 隐私保护 // // Created by APPLE on 2023/8/30. // #import "BaseViewController.h" NS_ASSUME_NONNULL_BEGIN @protocol ComontAlretViewControllerDelegate - (void)okBtnClickPressed; @end @interface ComontAlretViewController : BaseViewController @property (nonatomic,weak)id delegate; - (id)initWithTiTle:(NSString *)title msg:(NSString *)msg cancelTitle:(NSString *)cancelTitle okTitle:(NSString *)okTitle; @end NS_ASSUME_NONNULL_END