我正在实现我的应用程序中的视频通话功能的 twilio sdk ,但是远程视图没有显示参与者是否与房间连接。当我连接参与者TVIParticipantDelegate
方法调用时,我将渲染器视频轨道添加到远程视图。
我在dispatch main队列中添加了远程视频,它对我有用。
dispatch_async(dispatch_get_main_queue(), ^{
[videoTrack addRenderer:self.remoteView];
});