Yogendra Solanki
Yogendra Solanki

Reputation: 211

I have issue with Twilio SDK Video call Remote view?

I am implementing the Twilio SDK for video calling functionality in my application but the remote view is not showing if the participant is connected with the room. When I connected with participant TVIParticipantDelegate method call and I add renderer video track to remote view.

Upvotes: 0

Views: 182

Answers (1)

Yogendra Solanki
Yogendra Solanki

Reputation: 211

I added remoteview in dispatch main queue it works for me.

  dispatch_async(dispatch_get_main_queue(), ^{
        [videoTrack addRenderer:self.remoteView];
    });

Upvotes: 2

Related Questions