Open sylvia971 opened 4 years ago
seeing that here too
Crash on calling dialog picker show function.
This is because in iOS 13, App Delegate does not have the variable "window".
You must create it within AppDelegate, Then, let's go to SceneDelegate, At the end of
func scene (_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
and set the "Window" variable of "AppDelegate":
let appDel = (UIApplication.shared.delegate as! AppDelegate)
appDel.window = window
I also have a problem with AppDelegate, I'm unable to skip login VC
The dialog is not showing when running the app in iOS 13.