30 lines
789 B
C
30 lines
789 B
C
|
|
//
|
||
|
|
// LMCPSpaceCollectionViewCell.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by Xmac on 2024/8/13.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "LMCPSpaceDressListModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
static NSString *LMCPSpaceCollectionViewCellID = @"LMCPSpaceCollectionViewCellID";
|
||
|
|
@interface LMCPSpaceCollectionViewCell : UICollectionViewCell
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *levelLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *dressIcon;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *basePic;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *dressName;
|
||
|
|
|
||
|
|
|
||
|
|
@property (nonatomic, strong) LMCPSpaceDressListModel *model;
|
||
|
|
|
||
|
|
- (void)setHeaderDecInfoWithModel:(LMCPSpaceDressListModel *)model;
|
||
|
|
- (void)setCPTexiaoInfoWithModel:(LMCPSpaceDressListModel *)model;
|
||
|
|
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|