Answers for "swift on modal view controller programmatically"

0

view controller modal fullscreen programmatically swift 5

let vc = self.storyboard?.instantiateViewController(withIdentifier: "storyboardID_cameraview1") as! CameraViewController
  
vc.modalPresentationStyle = .fullScreen
    
self.present(vc, animated: true, completion: nil)`
Posted by: Guest on October-01-2021

Code answers related to "swift on modal view controller programmatically"

Code answers related to "Swift"

Browse Popular Code Answers by Language