43 lines
1.1 KiB
Objective-C
Executable File
43 lines
1.1 KiB
Objective-C
Executable File
//
|
|
// ShouQiBangCell.h
|
|
// miliao
|
|
//
|
|
// Created by 翟三美 on 2020/6/27.
|
|
// Copyright © 2020 miliao. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BJBoxRankModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ShouQiBangCell : UITableViewCell
|
|
//头像
|
|
@property (strong, nonatomic) IBOutlet UIImageView *userIcon;
|
|
//在
|
|
@property (strong, nonatomic) IBOutlet UILabel *giftPre;
|
|
//宝箱名字
|
|
@property (strong, nonatomic) IBOutlet UILabel *typeNum;
|
|
//礼物名字
|
|
@property (strong, nonatomic) IBOutlet UILabel *giftName;
|
|
//礼物数量
|
|
@property (strong, nonatomic) IBOutlet UILabel *giftNum;
|
|
//用户名
|
|
@property (strong, nonatomic) IBOutlet UILabel *userNickname;
|
|
//贡献等级
|
|
@property (strong, nonatomic) IBOutlet UIImageView *gxImageView;
|
|
//魅力等级
|
|
@property (strong, nonatomic) IBOutlet UIImageView *mlImageView;
|
|
//礼物图标
|
|
@property (strong, nonatomic) IBOutlet UIImageView *giftIcon;
|
|
//时间
|
|
@property (strong, nonatomic) IBOutlet UILabel *sendTime;
|
|
|
|
/*model*/
|
|
@property(nonatomic, strong) BJBoxRankModel *model;
|
|
|
|
-(void)onChangeUIColor:(UIColor *)color;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|