| 123456789101112131415161718192021222324 |
- //
- // LiveRankCell.h
- // YBVideo
- //
- // Created by ybRRR on 2021/2/27.
- // Copyright © 2021 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|