CSJRewardedLiveCountDownView.h 592 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // CSJRewardedLiveCountDownView.h
  3. // CSJAdSDK
  4. //
  5. // Created by shenqichen on 2021/8/4.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. #define BURewardedLiveCountDownViewSize 72
  10. @protocol CSJRewardedLiveCountDownViewDelegate <NSObject>
  11. - (void)onCountDownToZero;
  12. @end
  13. @interface CSJRewardedLiveCountDownView : UIView
  14. - (instancetype)initWithFrame:(CGRect)frame
  15. delegate:(nullable id<CSJRewardedLiveCountDownViewDelegate>)delegate;
  16. /**
  17. 更新播放时间
  18. */
  19. - (void)updateCountDown:(long)leftTime duration:(long)duration;
  20. @end
  21. NS_ASSUME_NONNULL_END