MORoomBackgroundSetView.h 433 B

12345678910111213141516171819202122
  1. //
  2. // MORoomBackgroundSetView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/8/13.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "MORoomBackgroundCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MORoomBackgroundSetView : UIView<JXCategoryListContentViewDelegate>
  11. /** 数据源 */
  12. @property (nonatomic, strong) NSArray *dataArr;
  13. @property (nonatomic, copy) void (^didSelectCellBlock)(MOMicroStyleModel *cellModel);
  14. @end
  15. NS_ASSUME_NONNULL_END