Problem
I need to open Zoom meeting window (the window after user joins to the meeting) that always ignore fullscreen mode, even user set specific option in settings
What I did
I have tried to change MeetingSettingCmd_AutoFullScreenWhenJoinMeeting
:
let error = ZoomSDK.shared()?.getSettingService()?.getGeneralSetting()?.enableMeetingSetting(false, settingCmd: MeetingSettingCmd_AutoFullScreenWhenJoinMeeting)
Result
Meeting window starts in full screen (even if I set false
for MeetingSettingCmd_AutoFullScreenWhenJoinMeeting
)
Question
Could I do something additional to present meeting window that always ignore full screen mode?
Note
I don’t use a custom UI:
needCustomizedUI == false
Thanks!