MOGradeCollectionCell.h 503 B

123456789101112131415161718192021222324
  1. //
  2. // MOGradeCollectionCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/12/27.
  6. //
  7. #define MOGradeCollectionCell_ID @"MOGradeCollectionCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. #import "MOGradeInfoCell.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MOGradeCollectionCell : UITableViewCell
  12. @property (nonatomic, assign) NSInteger level;
  13. @property (nonatomic, strong) NSArray *dataArr;
  14. @property (nonatomic, copy) void(^cellClickBlock)(MOPrivilegesItemInfo *cellModel);
  15. @end
  16. NS_ASSUME_NONNULL_END