Description
I need to detect the user who is started sharing the screen
There is a delegate method for ZoomSDKASController
instance:
func onSharing(_ status: ZoomSDKShareStatus, user userID: UInt32)
to detect sharing state, and user who is sharing.
But I don’t have user with such id in meetingActionController?.getParticipantsList()
for example userID
from onSharing(_,_)
is equal
1677**43
and users ids from getParticipantsList
are equal
[1678**88, 1677**40]
how can I get ZoomSDKUserInfo
object of user who is sharing the screen?
Thank you!