Is it possible to hide the options bar in the IOS Zoom Client SDK?

I want to make a calling app using Zoom’s SDK.
I want to hide the Zoom options bar, what should I do?

It was stated that Android can be done in the following ways, but IOS could not be found.

Android

Hello @mvp-developer

Thanks for using the dev forum!

You can hide various parts of the default meeting UI, by using the MobileRTCMeetingSettings class:
[[MobileRTC sharedRTC] getMeetingSettings]

Then you can hide things by setting one of the ‘hidden’ properties. For example if you wanted to hide the view mentioned above you would call:
[[MobileRTC sharedRTC] getMeetingSettings].bottomBarHidden = YES;

Thanks!
Michael