20 lines
365 B
Objective-C
20 lines
365 B
Objective-C
//
|
|
// CustomRoomBGCell.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/10/30.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CustomRoomBGCell : UICollectionViewCell
|
|
|
|
+ (void)registerTo:(UICollectionView *)collectionView;
|
|
+ (CustomRoomBGCell *)reuseFrom:(UICollectionView *)collectionView atIndexPath:(NSIndexPath *)indexPath;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|