I have just developed an app, but when running in the simulator the debugger console says:
The app delegate must implement the window property if it w
I had the same issue, just add var window: UIWindow? as the debug error says.
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
}