42 lines
1.5 KiB
Objective-C
42 lines
1.5 KiB
Objective-C
//
|
|
// BJBoxRankCell.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/5/10.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BJBoxRankModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BJBoxRankCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *orderLab;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV_1;
|
|
@property (weak, nonatomic) IBOutlet UILabel *numLab_1;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV_2;
|
|
@property (weak, nonatomic) IBOutlet UILabel *numLab_2;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV_3;
|
|
@property (weak, nonatomic) IBOutlet UILabel *numLab_3;
|
|
@property (weak, nonatomic) IBOutlet UIView *bgView_1;
|
|
@property (weak, nonatomic) IBOutlet UIView *bgView_2;
|
|
@property (weak, nonatomic) IBOutlet UIView *bgView_3;
|
|
//昨日榜
|
|
@property (nonatomic, strong)BJBoxRankModel *model;
|
|
@property (weak, nonatomic) IBOutlet UIView *zouriRankView;
|
|
@property (weak, nonatomic) IBOutlet UIView *zuoribaiyinView;
|
|
@property (weak, nonatomic) IBOutlet UIView *zuoriHuangjinView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *zuoriBaiyinL;
|
|
@property (weak, nonatomic) IBOutlet UILabel *zuorihuangjinL;
|
|
//房间榜
|
|
@property (weak, nonatomic) IBOutlet UIView *roomRankView;
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *roomRankViewWidthCon;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|