// // LiveRankCell.h // YBVideo // // Created by ybRRR on 2021/2/27. // Copyright © 2021 cat. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface LiveRankCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *numLb; @property (weak, nonatomic) IBOutlet UIImageView *numImg; @property (weak, nonatomic) IBOutlet UIImageView *headImg; @property (weak, nonatomic) IBOutlet UILabel *nameLb; @property (weak, nonatomic) IBOutlet UILabel *popularityLb; @property (nonatomic, strong)NSDictionary *rankData; +(LiveRankCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath; @end NS_ASSUME_NONNULL_END