26 lines
749 B
C
26 lines
749 B
C
|
|
//
|
||
|
|
// LMLoveLsTableViewCell.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by Xmac on 2024/8/7.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "LMLoveLsListModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
static NSString *LMLoveLsTableViewCellID = @"LMLoveLsTableViewCellID";
|
||
|
|
@interface LMLoveLsTableViewCell : UITableViewCell
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *rankLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *leftHeaderPic;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *rightHaderPic;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *leftNicknameLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *rightNicknameLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *valueLabel;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) LMLoveLsListModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|