| 类名 | 描述 |
|---|---|
| VHRoom | 互动类 |
| VHLocalRenderView | 推流 view |
| VHVideoRoundObject | 视频轮询 |
| VHallChat | 聊天类 |
+ (void)getRoundUsers:(NSString *)room_id is_next:(NSString *)is_next success:(void(^)(NSDictionary *response))success fail:(void(^)(NSError *error))fail;| 参数名称 | 是否必须 | 示例 | 备注 |
|---|---|---|---|
| room_id | 是 | lss_xxxxx | 房间 id |
| is_next | 是 | 1 | 0:当前组, 1:下一组 |
[VHVideoRoundObject getRoundUsers:pass_room_id is_next:@"0" success:^(NSDictionary *response) {
NSDictionary * data = response[@"data"];
NSMutableArray * users = [NSMutableArray array];
for (NSDictionary * dic in data[@"list"]) {
[users addObject:dic[@"account_id"]];
}
[weakSelf videoRoundUsers:users webinar_id:weakSelf.webinar_id pass_room_id:weakSelf.pass_room_id];
} fail:^(NSError *error) {
}];
| 方法 | 方法描述 |
|---|---|
| videoRoundStart | 轮巡开始 |
| reciveChatMsg | 轮巡结束 |
| reciveCustomMsg | 轮巡列表 |
- (void)videoRoundStart;