2021-11-10 18:42:27 +08:00
|
|
|
//
|
|
|
|
// XPGiftUsersView.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2021/11/9.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "XPSendGiftView.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2021-11-11 18:39:12 +08:00
|
|
|
@class MicroQueueModel;
|
|
|
|
@interface XPGiftUsersView : UIView
|
2021-11-10 18:42:27 +08:00
|
|
|
|
|
|
|
- (instancetype)initWithType:(SendGiftType)type;
|
|
|
|
///选中的人 送给谁礼物
|
|
|
|
@property (nonatomic,strong, readonly) NSMutableArray<NSString *> *selectUserArray;
|
2021-11-16 16:31:24 +08:00
|
|
|
///是不是选择了全部麦上的人
|
|
|
|
@property (nonatomic,assign) BOOL isSelectAll;
|
2021-11-11 18:39:12 +08:00
|
|
|
///麦序变化 赋值使用
|
|
|
|
- (void)microQueueUpdate:(NSArray<MicroQueueModel *> *)queue;
|
2021-11-10 18:42:27 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|