24 lines
468 B
Objective-C
Executable File
24 lines
468 B
Objective-C
Executable File
//
|
|
// DLJueweiItemCell.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2023/6/28.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "DLJueweiItemModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DLJueweiItemCell : UICollectionViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *decLab;
|
|
|
|
@property (nonatomic, strong) DLJueweiItemModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|