LiveRankCell.h 674 B

123456789101112131415161718192021222324
  1. //
  2. // LiveRankCell.h
  3. // YBVideo
  4. //
  5. // Created by ybRRR on 2021/2/27.
  6. // Copyright © 2021 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface LiveRankCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *numLb;
  12. @property (weak, nonatomic) IBOutlet UIImageView *numImg;
  13. @property (weak, nonatomic) IBOutlet UIImageView *headImg;
  14. @property (weak, nonatomic) IBOutlet UILabel *nameLb;
  15. @property (weak, nonatomic) IBOutlet UILabel *popularityLb;
  16. @property (nonatomic, strong)NSDictionary *rankData;
  17. +(LiveRankCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath;
  18. @end
  19. NS_ASSUME_NONNULL_END