UpHotCell.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // UpHotCell.h
  3. // YBVideo
  4. //
  5. // Created by ybRRR on 2021/3/1.
  6. // Copyright © 2021 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol upHotCellDelegate <NSObject>
  10. -(void)reUpOrderClick:(NSDictionary *)dic;
  11. -(void)clickReUpliveOrder;
  12. @end
  13. @interface UpHotCell : UITableViewCell
  14. @property (weak, nonatomic) IBOutlet UILabel *timeLb;
  15. @property (weak, nonatomic) IBOutlet UIImageView *thumbImg;
  16. @property (weak, nonatomic) IBOutlet UILabel *moneyLb;
  17. @property (weak, nonatomic) IBOutlet UILabel *timeLengthLb;
  18. @property (weak, nonatomic) IBOutlet UILabel *wantNumLb;
  19. @property (weak, nonatomic) IBOutlet UILabel *realTimeLb;
  20. @property (weak, nonatomic) IBOutlet UILabel *realPlayLb;
  21. @property (weak, nonatomic) IBOutlet UILabel *returnCoinLb;
  22. @property (weak, nonatomic) IBOutlet UIButton *statuBtn;
  23. @property (weak, nonatomic) IBOutlet UIButton *aginBtn;
  24. @property (weak, nonatomic) IBOutlet UILabel *xiaoguoL;
  25. @property (weak, nonatomic) IBOutlet UILabel *leibieL;
  26. @property (weak, nonatomic) IBOutlet UILabel *gdy_tfjeL;
  27. @property (weak, nonatomic) IBOutlet UILabel *gdy_tfsjL;
  28. @property (weak, nonatomic) IBOutlet UILabel *gdy_playNumL;
  29. @property (weak, nonatomic) IBOutlet UILabel *gdy_RealTimeL;
  30. @property (weak, nonatomic) IBOutlet UILabel *gdy_realPlayNUmL;
  31. @property (weak, nonatomic) IBOutlet UILabel *gdy_backNUmL;
  32. @property (nonatomic, assign)BOOL islive;
  33. @property (nonatomic, strong)NSDictionary *dataDic;
  34. @property (nonatomic, strong)NSDictionary *livedataDic;
  35. @property (nonatomic, strong)NSString *statuStr;
  36. @property (nonatomic, assign)id<upHotCellDelegate>delegate;
  37. +(UpHotCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath;
  38. @end