In iOS 13 there is a new behaviour for modal view controller when being presented.
Now it\'s not fullscreen by default and when I try to slide down, the app just dis
This worked for me
`let vc = self.storyboard?.instantiateViewController(withIdentifier: "cameraview1") as! CameraViewController
vc.modalPresentationStyle = .fullScreen self.present(vc, animated: true, completion: nil)`