CSJSkipButton.h 471 B

1234567891011121314151617181920212223
  1. //
  2. // CSJSkipButton.h
  3. // CSJAdSDK
  4. //
  5. // Created by carl on 2017/8/4.
  6. // Copyright © 2017年 bytedance. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CSJSkipButton : UIButton
  10. @property (nonatomic, copy) void(^timeOut)(void);
  11. - (void)setSkipString:(NSString *)skipString;
  12. - (void)beginCountDown:(NSTimeInterval)countdobuTimeInterval;
  13. - (void)pauseCoutDown;
  14. - (void)resumeCoutDown;
  15. - (void)stopCoutDown;
  16. - (void)updateText:(CGFloat)lastSeconds;
  17. @end