iOS : In iOS custom ui how to display the videos of all participants like a gallery view in the zoom desktop client

Description

In iOS custom ui how to display the videos of all participants like a gallery view in the zoom desktop client.

Hey @vignesh,

Thanks for using the dev forum. It is good to see you again!

You would have to configure this manually. Each user would have their own MobileRTCVideoView. You would then iterate through the users in your meeting and create a MobileRTCVideoView then call showAttendeeVideoWithUserID on that MobileRTCVideoView with that user’s ID.

  • Use - ( void )onSinkMeetingUserJoin:(NSUInteger)userID; to be notified when a new user has joined
  • Use - ( void )onSinkMeetingUserLeft:(NSUInteger)userID; to be notified when a user has left
  • At any point in the meeting you can get all the users who are currently in the meeting with getInMeetingUserList

Thanks!
Michael