美文网首页
iOS13问题适配记录

iOS13问题适配记录

作者: Look2021 | 来源:发表于2019-11-06 13:59 被阅读0次

    https://mp.weixin.qq.com/s/cltsFffNGIRe0u4-iJ5yVQ

    PresentViewController

    let mainViewController = UIView()  // 即需要被present的view
    mainViewController.modalPresentationStyle = .fullScreen
    self.present(mainViewController, animated: true, completion: nil)
    
    - (UIModalPresentationStyle)modalPresentationStyle {
        return UIModalPresentationFullScreen;
    }
    

    相关文章

      网友评论

          本文标题:iOS13问题适配记录

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