CSJNativeExpressRewardDrawProgressView.h 444 B

123456789101112131415161718192021222324
  1. //
  2. // CSJNativeExpressRewardDrawProgressView.h
  3. // CSJAdSDK
  4. //
  5. // Created by ByteDance on 2022/8/1.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. // 66 * 78
  10. @interface CSJNativeExpressRewardDrawProgressView : UIView
  11. @property (nonatomic, assign) NSUInteger totalTime;
  12. @property (nonatomic, strong) UIImageView *tipsView;
  13. - (void)updateCountDown:(NSUInteger)countDown;
  14. - (void)refreshWhenRewardDidSend;
  15. @end
  16. NS_ASSUME_NONNULL_END