CSJRewardedLiveAlertView.h 605 B

1234567891011121314151617181920212223242526
  1. //
  2. // CSJRewardedLiveAlertView.h
  3. // CSJAdSDK
  4. //
  5. // Created by shenqichen on 2021/8/3.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef void (^BURewardedLiveAlertCompletion)(BOOL isConfirm, BOOL countDownToZero);
  10. @interface CSJRewardedLiveAlertView : UIView
  11. - (instancetype)initWithFrame:(CGRect)frame
  12. text:(NSString *)text
  13. duration:(NSInteger)duration
  14. autoJump:(BOOL)autoJump
  15. completion:(BURewardedLiveAlertCompletion)completion;
  16. - (void)showInView:(UIView *)parentView;
  17. @end
  18. NS_ASSUME_NONNULL_END