How can I remove the black bar from meeting video (Top and Bottom)?

XCode 13.2
macOS 11
zoom-sdk-ios-5.9.1.2191

We can’t get a fullscreen video,How can I remove the black bar from meeting video (Top and Bottom)
We use customMeeting,The video custom ocde:

  • (MobileRTCVideoView*)videoView
    {
    if (!_videoView)
    {
    self.view.frame = CGRectMake(0,0,self.view.frame.size.width,self.view.frame.size.height);

      _videoView = [[MobileRTCVideoView alloc] initWithFrame:self.view.frame];
      //_videoView = [[MobileRTCVideoView alloc] initWithFrame:self.view.bounds];
      [_videoView setVideoAspect:MobileRTCVideoAspect_PanAndScan];
    

    }
    return _videoView;
    }

We use MobileRTCVideoAspect_PanAndScan or MobileRTCVideoAspect_Full_Filled- so the video does not cover the full area,It seems doesn’t work

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.