| 1234567891011121314151617181920212223242526 |
- //
- // MOGiftUserCell.h
- // MiMoLive
- //
- // Created by SuperC on 2024/8/19.
- //
- #define MOGiftUserCell_ID @"MOGiftUserCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOGiftUserCell : UICollectionViewCell
- @property (nonatomic, assign) BOOL isManage;
- @property (nonatomic, strong) MOUserProfile *anchorUser;//主播
- @property (nonatomic, strong) MOUserProfile *cellModel;
- @property (nonatomic, strong) NSIndexPath *cellIndexPath;
- @property (nonatomic, copy) void (^cellStatusChangeBlock)(MOUserProfile *cellModel);
- @end
- NS_ASSUME_NONNULL_END
|