FPKCountDownView.h 602 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // FPKCountDownView.h
  3. // BuguLive
  4. //
  5. // Created by bogokj on 2019/4/2.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface FPKCountDownView : BGBaseView{
  11. __weak id<FWShowLiveRoomAble> _liveItem;
  12. }
  13. @property(nonatomic, assign) int countDown;
  14. @property (nonatomic, copy) NSString *pkid;
  15. //2020-1-3 修改pk
  16. @property (nonatomic, copy) NSString *pktype;
  17. - (instancetype)initWithFrame:(CGRect)frame liveItem:(id<FWShowLiveRoomAble>)liveItem;
  18. -(void)stopTimer;
  19. - (void)switchToPunish:(int)time;
  20. @end
  21. NS_ASSUME_NONNULL_END