ZoomSDKError 4 on UI functions

Hey @j_a_z_z,

To get the userID’s of the users who are actively sharing, you can call - getShareSourceList from the ZoomSDKASController.

To be alerted that someone started sharing you can use - onSharingStatus:User:

To assign your object as a delegate you would call:

ZoomSDKMeetingService* meetingService = [[ZoomSDK sharedSDK] getMeetingService];
if(meetingService)
{
let shareController = [meetingService getASController];
shareController.delegate = self;
}

Thanks!
Michael