📜  以编程方式查看控制器模式全屏 swift 5 - Swift 代码示例

📅  最后修改于: 2022-03-11 15:01:01.952000             🧑  作者: Mango

代码示例1
let vc = self.storyboard?.instantiateViewController(withIdentifier: "storyboardID_cameraview1") as! CameraViewController
  
vc.modalPresentationStyle = .fullScreen
    
self.present(vc, animated: true, completion: nil)`