YBAnchorPKView.h 543 B

12345678910111213141516171819202122
  1. //
  2. // YBAnchorPKView.h
  3. // yunbaolive
  4. //
  5. // Created by Boom on 2018/11/14.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^AnchorPKBlock)(void);
  10. @interface YBAnchorPKView : UIView
  11. @property(nonatomic,copy)AnchorPKBlock pkViewEvent;
  12. - (instancetype)initWithFrame:(CGRect)frame andTime:(NSString *)time;
  13. - (void)updateProgress:(CGFloat)progress withBlueNum:(NSString *)blueNum withRedNum:(NSString *)redNum;
  14. - (void)showPkResult:(NSDictionary *)dic andWin:(int)win;
  15. - (void)removeTimer;
  16. @end