31 lines
849 B
Objective-C
31 lines
849 B
Objective-C
//
|
|
// LMWeekListTableViewCell.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "LMCurrentWeekGiftRankListModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
static NSString *LMWeekListTableViewCellID = @"LMWeekListTableViewCellID";
|
|
@interface LMWeekListTableViewCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *rankIcon;
|
|
@property (weak, nonatomic) IBOutlet UILabel *rankLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *receiveHeaderPic;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nickNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *receiveCountLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *sendHeaderPic;
|
|
@property (weak, nonatomic) IBOutlet UILabel *sendCountLabel;
|
|
|
|
@property (nonatomic, strong) LMCurrentWeekGiftRankListModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|