CSJRewardBrowseAlertView.h 574 B

123456789101112131415161718192021
  1. //
  2. // CSJRewardBrowseAlertView.h
  3. // CSJAdSDK
  4. //
  5. // Created by yujie on 2021/9/14.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef void (^BURewardBrowseAlertViewConfirmBlock)(void);
  10. typedef void (^BURewardBrowseAlertViewCancelBlock)(void);
  11. @interface CSJRewardBrowseAlertView : UIView
  12. @property (nonatomic, copy) BURewardBrowseAlertViewConfirmBlock confirmBlock;
  13. @property (nonatomic, copy) BURewardBrowseAlertViewCancelBlock cancelBlock;
  14. - (instancetype)initWith:(NSString *)title msg:(NSString *)msg;
  15. - (void)show;
  16. - (void)hide;
  17. @end
  18. NS_ASSUME_NONNULL_END