美文网首页iOS
presentViewController 页面顶部留白

presentViewController 页面顶部留白

作者: survivorsfyh | 来源:发表于2022-08-25 10:45 被阅读0次

    调用 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,从而导致了这种状况的发现.


    以上便是此次分享的全部内容,希望能对大家有所帮助!

    相关文章

      网友评论

        本文标题:presentViewController 页面顶部留白

        本文链接:https://www.haomeiwen.com/subject/qovagrtx.html