MOGiftUserView.h 548 B

1234567891011121314151617181920212223242526
  1. //
  2. // MOGiftUserView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/8/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MOGiftUserView : UIView
  10. @property (nonatomic, strong) MOUserProfile *anchorUser;//主播
  11. @property (nonatomic, strong) NSArray *linkMics;//连麦人员
  12. @property (nonatomic, strong) NSArray *oldSelectUserArr;
  13. @property (nonatomic, strong) NSMutableArray *selectUserArr;
  14. @property (nonatomic, assign) BOOL isSingleLinkMic;//是否单人连麦
  15. + (instancetype)moGiftUserView;
  16. @end
  17. NS_ASSUME_NONNULL_END