27 lines
629 B
Objective-C
Executable File
27 lines
629 B
Objective-C
Executable File
//
|
|
// SPShopMallCell.h
|
|
// romantic
|
|
//
|
|
// Created by bj_szd on 2022/7/29.
|
|
// Copyright © 2022 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SPShopMallModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPShopMallCell : UICollectionViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *iconImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *priceLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
|
|
|
|
@property (nonatomic, strong) SPShopMallModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|