Files
yinmeng-ios/xplan-ios/Base/UI/SendGiftView/View/XPGiftUsersView.h

24 lines
590 B
C
Raw Normal View History

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
@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;
///麦序变化 赋值使用
- (void)microQueueUpdate:(NSArray<MicroQueueModel *> *)queue;
2021-11-10 18:42:27 +08:00
@end
NS_ASSUME_NONNULL_END