What is the meaning of 'share your app view controller in the meeting'?

,

Hello.

 

I would like to use iOS MobileRTC in my application.

So I read this page.

https://zoom.us/developer/overview/ios-rtc-stack-custom-functions

In this page, I can find bellow lines.

  • ability to share your app view controller in the meeting - i.e share your app’s screen

What is the meaning of  ‘share your app view controller in the meeting’?

Can I share my application’s screen on real time?

Or it’s only the meaning that I can share my screen captures in the meeting?

 

Best Regards,

Kozue Tabuchi

Hi Kozue,

you are right, you can share your application on real time if you integrated Zoom SDK in it and using App share meeting. other Attendees will be able to see your application’s UI. Please download iOS SDK sample @ https://github.com/zoom/zoom-sdk-ios. And test the App share meeting.

Best

Hi Zoom Demo,

 

Thank you for your quick response.

I could do App share meeting with sample code.

It’s so useful function for me.

I will use it in my application in the future.

 

Best Regards,

Kozue Tabuchi

Hi Kozue
Our SDK has the ability to share a photo, a website, anything you can want to share.
you can share a UIView use the method: - (void)appShareWithView:(nonnull UIView*)view;

you can share your whole app view with - (void)appShareWithReplayKit;

You can even share your iPhone’s screen:https://marketplace.zoom.us/docs/sdk/native-sdks/iOS/mastering-zoom-sdk/in-meeting-function/zoom-meeting-ui/screen-share

you can refer to our sample project:https://github.com/zoom/zoom-sdk-ios

Thanks.