19 lines
396 B
Objective-C
19 lines
396 B
Objective-C
//
|
|
// QXEmojiCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/10/22.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXEmojiTypeModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXEmojiCell : UICollectionViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
|
|
@property (nonatomic,strong)QXEmojiModel *model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|