Files
peko-ios/YuMi/Modules/YMRoom/View/Custom Background/CustomRoomBGCell.h
2024-11-11 19:35:21 +08:00

31 lines
736 B
Objective-C

//
// CustomRoomBGCell.h
// YuMi
//
// Created by P on 2024/10/30.
//
#import <UIKit/UIKit.h>
@class CustomRoomBGItemModel;
NS_ASSUME_NONNULL_BEGIN
@interface CustomRoomBGCell : UICollectionViewCell
@property (nonatomic, assign) BOOL isSelectedCell;
@property (nonatomic, copy) void(^handleTapActionButton)(CustomRoomBGItemModel *obj);
@property (nonatomic, copy) void(^handleTapTrash)(CustomRoomBGItemModel *model);
+ (void)registerTo:(UICollectionView *)collectionView;
+ (CustomRoomBGCell *)reuseFrom:(UICollectionView *)collectionView
model:(CustomRoomBGItemModel *)model
atIndexPath:(NSIndexPath *)indexPath;
- (void)playSVGA;
- (void)pauseSVGA;
@end
NS_ASSUME_NONNULL_END