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