26 lines
667 B
Objective-C
26 lines
667 B
Objective-C
//
|
|
// QXRankListCell.h
|
|
// IsLandVoice
|
|
//
|
|
// Created by 启星 on 2025/3/4.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXRankModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXRankListCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *numberLabel;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *headerImageView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *valueLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
|
@property (nonatomic,strong)QXMyRankModel *model;
|
|
/// 1 魅力 2 财富 3 房间 4 cp
|
|
@property (nonatomic,assign)NSInteger rankType;
|
|
+(instancetype)cellWithTableView:(UITableView*)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|