27 lines
784 B
Objective-C
27 lines
784 B
Objective-C
//
|
|
// LMSendSpecialCollectionViewCell.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/9/2.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "LMSpecialGiftModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
static NSString *LMSendSpecialCollectionViewCellID = @"LMSendSpecialCollectionViewCellID";
|
|
@interface LMSendSpecialCollectionViewCell : UICollectionViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *itemBGIcon;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftBaseIMG;
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftPriceLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UIView *tagCover;
|
|
@property (weak, nonatomic) IBOutlet UILabel *tagNameLabel;
|
|
|
|
@property (nonatomic, strong) LMSpecialGiftModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|