How to integrate zoom webinar in iOS

My requirement is to integrate the Zoom Webinar into our own iOS app,

I checked out your Zoom sample iOS projects, but unable to find it out.

Can you please guide me in the right direction, your help is much appreciated?

Many Thanks,
Vishwanath

Hey @kvishwanath0551,

Thanks for using the dev forum!

Webinars are indeed supported in the Zoom Meeting SDK for iOS. You must create the webinar outside of the application, but you can join webinars and listen to webinar events through the SDK.

The SDK provides a delegate: MobileRTCWebinarServiceDelegate, which is extended functionality of
MobileRTCMeetingServiceDelegate, that listens to various callbacks from a webinar. You can also call various webinar functions from within MobileRTCMeetingService. These functions are listed in MobileRTCMeetingService+Webinar.h.

If the user has a token from being invited to a webinar that token can be provided into the webinarToken parameter of MobileRTCMeetingJoinParam.

Thanks!
Michael