| 1234567891011121314151617181920212223242526 |
- //
- // MOGiftUserView.h
- // MiMoLive
- //
- // Created by SuperC on 2024/8/19.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOGiftUserView : UIView
- @property (nonatomic, strong) MOUserProfile *anchorUser;//主播
- @property (nonatomic, strong) NSArray *linkMics;//连麦人员
- @property (nonatomic, strong) NSArray *oldSelectUserArr;
- @property (nonatomic, strong) NSMutableArray *selectUserArr;
- @property (nonatomic, assign) BOOL isSingleLinkMic;//是否单人连麦
- + (instancetype)moGiftUserView;
- @end
- NS_ASSUME_NONNULL_END
|