Window.MakeKeyAndVisible() is not showing new window in iOS 13 and above OS
问题 My requirement is to open new UIWindow instead story board. Used below code to do this, UIWindow window = new UIWindow(UIScreen.MainScreen.Bounds); UIApplication.SharedApplication.KeyWindow.WindowLevel = UIWindowLevel.Normal + 0.1f; window.RootViewController = new MainNavigationController(); window.MakeKeyAndVisible(); It's working fine in iOS below 13 versions, but not in 13 and above. Have noted that iOS 13 and above were new update for multi screen, and have introduced scene delegate, so