美文网首页
iOS13 present不是全屏

iOS13 present不是全屏

作者: 雷霸龙 | 来源:发表于2019-10-12 14:38 被阅读0次

    iOS13更新之后,present到新的页面,没有全屏显示,这是因为增加了一个控制器属性modalPresentationStyle,默认值是auto,也就不是全屏的,我们可以在present之前修改此属性为.fullScreen,加入从A控制器跳转到B控制器,则

    self.modalPresentationStyle = .fullScreen
    let vc = BViewController()
    vc.modalPresentationStyle = .fullScreen
    present(vc, animated: true, completion: nil)
    

    相关文章

      网友评论

          本文标题:iOS13 present不是全屏

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