Hide invitation link option in Swift

Description

Hi, I wanted to know if I can hide the invitation link that is in the top zoom bar?

If I can’t hide this invite link and instead have to hide the entire top bar, I was reviewing the documentation and wanted to know if I can put the option to exit the meeting in this menu:

Hey @dhernandez,

Thanks for using the dev forum!

You can hide the invitation link by setting meetingInviteHidden to true in MobileRTCMeetingSettings before joining/starting the meeting:
Swift:
MobileRTC.shared().getMeetingSettings()?.meetingInviteHidden = true
Objective-C:
[[MobileRTC sharedRTC] getMeetingSettings].meetingInviteHidden = YES;

No, you cannot add an additional menu item there. You can however, implement your own custom meeting UI which would allow for something like this.

Thanks!
Michael

Hi, how hide on Android SDK?