美文网首页
ios 13 模态跳转(presentViewControlle

ios 13 模态跳转(presentViewControlle

作者: Peter_song | 来源:发表于2020-01-14 12:35 被阅读0次

    在A页面模态弹出B页面,B页面设置modalPresentationStyle属性即可全屏显示.

    - (void)BtnClick{

       BViewController * VC = [[BViewController alloc]init];

        //隐藏tabbar

        VC.hidesBottomBarWhenPushed =YES;

        /*防止弹出界面不能占满屏幕*/

        VC.modalPresentationStyle = UIModalPresentationFullScreen;

        [self presentViewController:VC animated:YES completion:nil];

    }

    相关文章

      网友评论

          本文标题:ios 13 模态跳转(presentViewControlle

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