Share screen not working using custom uI

Screen share is not working using the custom meeting ui but iam done with screen share process using this https://marketplace.zoom.us/docs/sdk/native-sdks/iOS/mastering-zoom-sdk/in-meeting-function/screen-share
problem is:
when Iam calling startappshare method iam not getting anything in my app side
please send me any links for screen share or send me some code regarding screen share using custom metting thanks

Hey @rajendra.atluri92,

Thanks for using the dev forum!

Are you trying to share a single view or your whole screen?

Thanks!
Michael

i will try to share whole screen and single screen with the button action.

Hey @rajendra.atluri92,

I see, so are you using a broadcast extension? To share the entire view you will need to use a broadcast extension and not appShareWithView.

Thanks!
Michael

yes iam using broadcast extension view even appsharewit view also not working

Hey @rajendra.atluri92,

When using the broadcast extension route, are you starting the broadcast using the record button in control center? One other thing to mention is that broadcast extensions do not work when using a simulator.

Thanks!
Michael

How to share single view please send me some code using custom UI

Hey @rajendra.atluri92,

Here is some example code that is provided in the sample application:

- (void)startOrStopAppShare
{
    MobileRTCMeetingService *ms = [[MobileRTC sharedRTC] getMeetingService];
    if (ms) {
        if (ms.isStartingShare) {
            [ms stopAppShare];
        } else {
            [ms startAppShare];
        }
    }
}

- (void)appShareWithView:(UIView *)view
{
    [[[MobileRTC sharedRTC] getMeetingService] appShareWithView:view];
}

Thanks!
Michael

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.