MOGiftUserCell.h 582 B

1234567891011121314151617181920212223242526
  1. //
  2. // MOGiftUserCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/8/19.
  6. //
  7. #define MOGiftUserCell_ID @"MOGiftUserCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOGiftUserCell : UICollectionViewCell
  11. @property (nonatomic, assign) BOOL isManage;
  12. @property (nonatomic, strong) MOUserProfile *anchorUser;//主播
  13. @property (nonatomic, strong) MOUserProfile *cellModel;
  14. @property (nonatomic, strong) NSIndexPath *cellIndexPath;
  15. @property (nonatomic, copy) void (^cellStatusChangeBlock)(MOUserProfile *cellModel);
  16. @end
  17. NS_ASSUME_NONNULL_END