let vc = UIViewController()
vc.modalPresentationStyle = .fullScreen //or .overFullScreen for transparency
self.present(vc, animated: true, completion: nil)
if (@available(iOS 13.0, *)) {
[shopViewController setModalPresentationStyle: UIModalPresentationFullScreen];
} else {
// Fallback on earlier versions
}