How to connect to user's stream in TokBox
问题 I'm making a 1 on 1 video call app using TokBox. I'm opening a session using this code: [_session connectWithApiKey:kApiKey token:kToken]; after getting the didConnect message i'm publishing a stream on one user device using this code: _publisher = [[OTPublisher alloc] initWithDelegate:self]; [_publisher setName:@"PublishName"]; [_session publish:_publisher]; [self.view addSubview:_publisher.view]; [_publisher.view setFrame:CGRectMake(0, 0, widgetWidth, widgetHeight)]; What do I need to