调用 presentViewController 跳转页面后发现顶部留白,没有完全铺满整个视图,可以尝试通过如下方式解决;
对将要跳转的视图 VC 添加 UIViewController 中的 modalPresentationStyle 并将其 value 值配置为 UIModalPresentationFullScreen 即可,具体 code 如下;
CCLoginScanViewController *vc = [[CCLoginScanViewController alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
nav.modalPresentationStyle = UIModalPresentationFullScreen; // 配置全屏渲染
[self presentViewController:nav animated:YES completion:nil];
注: iOS13 之后默认值选项变为了 UIModalPresentationAutomatic,而在 iOS 12 以下的版本默认值则为 UIModalPresentationFullScreen,从而导致了这种状况的发现.
以上便是此次分享的全部内容,希望能对大家有所帮助!
网友评论