Swift Self.present Full Screen

[Solved] Swift Self.present Full Screen | Swift - Code Explorer | yomemimo.com
Question : swift self.present full screen

Answered by : kristopher-wrobel

let vc = UIViewController()
vc.modalPresentationStyle = .fullScreen //or .overFullScreen for transparency
self.present(vc, animated: true, completion: nil)

Source : https://stackoverflow.com/questions/56435510/presenting-modal-in-ios-13-fullscreen | Last Update : Fri, 11 Sep 20

Answers related to swift self.present full screen

Code Explorer Popular Question For Swift