Files
yuyin_ios/SweetParty/主类/Mine/装扮&商城/SPMineDressCell.h

26 lines
580 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// SPMineDressCell.h
// SweetParty
//
// Created by bj_szd on 2022/6/6.
//
#import <UIKit/UIKit.h>
#import "SPMineDressModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface SPMineDressCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
@property (weak, nonatomic) IBOutlet UIImageView *iconImgV;
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
@property (weak, nonatomic) IBOutlet UIButton *useBtn;
@property (nonatomic, strong) SPMineDressModel *model;
@end
NS_ASSUME_NONNULL_END