[iOS][CustomUI] What's the best way to know if the current user is an attendee in a webinar?

Hello,
I am using the last ios SDK. What’s the best way to know if the current user is an attendee in a webinar?

Best
Nicolas

Hi @nicolas.bonnet,

Thanks for the post. If you would like to know whether the current user is an attendee in a webinar, you may use the following interface in MobileRTCInMeetingService(https://zoom.github.io/zoom-sdk-ios/interface_mobile_r_t_c_meeting_service.html#a71a8aa5af60ac05d123fec3b8d98f0e6)

/*!
 @brief Query if the current user is the webinar attendee of the meeting.
 @return YES means that the current user is the webinar attendee of the meeting, otherwise not.
 @warning only for webinar meeting.
 */
- (BOOL)isWebinarAttendee;

Hope this helps. Thanks!