12345678910111213141516171819202122232425262728293031 |
- //
- // LiveSeatApplyView.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2022/3/31.
- //
- #import <UIKit/UIKit.h>
- #import "LiveSeatMember.h"
- typedef NS_ENUM(NSInteger, LIVESEATACTION) {
- LIVESEATACTION_REJECT, // 拒绝
- LIVESEATACTION_APPROVE, // 同意
- LIVESEATACTION_KICK, // 将学员抱下麦
- };
- typedef void(^LiveSeatCallback)(LIVESEATACTION action, LiveSeatMember * _Nonnull member);
- NS_ASSUME_NONNULL_BEGIN
- @interface LiveSeatApplyView : UIView
- + (instancetype)shareInstance;
- - (void)refreshSeatApplyTable:(NSArray *)seatMemberArray;
- - (void)operationMemberAction:(LiveSeatCallback)callback;
- @end
- NS_ASSUME_NONNULL_END
|