Hide Zoom Logo

I have to hide Zoom Logo saying Powered by Zoom.

Also,by calling getTopBarHidden is not working if i want to hide the top bar

Hi Face2Face,

you can not hide “Powered by Zoom”, it’s on the SDK Agreement that we will show this watermark during meeting.

for the second question, can you provide more details?

Best 

i want to show and hide topBar.i have action where I am writing the code [setting getTopBarHidden] where Setting is PreMeeting Setting.

can you put that section of codes here? 

Best

MobileRTCMeetingSettings *settings = [[MobileRTC sharedRTC] getMeetingSettings];

[settings setTopBarHidden:YES];

But, meeting view does not update at this time.on next meeting the top bar is hidden.

 

you can use the following: 

/**
* Show/Hide Top Bar in the meeting.
*/
@property (assign, nonatomic) BOOL topBarHidden;

/**
* Show/Hide Bottom Bar in the meeting
*
* *Note*: The Bottom Bar is just available in iPhone.
*/
@property (assign, nonatomic) BOOL bottomBarHidden;

this can be called during meeting. 

Best