| 12345678910111213141516171819202122 |
- //
- // MORoomBackgroundSetView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/8/13.
- //
- #import <UIKit/UIKit.h>
- #import "MORoomBackgroundCell.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MORoomBackgroundSetView : UIView<JXCategoryListContentViewDelegate>
- /** 数据源 */
- @property (nonatomic, strong) NSArray *dataArr;
- @property (nonatomic, copy) void (^didSelectCellBlock)(MOMicroStyleModel *cellModel);
- @end
- NS_ASSUME_NONNULL_END
|