27 lines
629 B
Objective-C
Executable File
27 lines
629 B
Objective-C
Executable File
//
|
|
// YYJYSimiGiftCell.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/7/27.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "YYJYSimiGiftModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYJYSimiGiftCell : UICollectionViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *priceLab;
|
|
@property (weak, nonatomic) IBOutlet UIButton *sendBtn;
|
|
|
|
@property (nonatomic, strong) YYJYSimiGiftModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|