here is swift default application code in Appdelecage.swift
class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? ... Can anyone tell me why create a optional var window?
why no like this as default:
var window: UIWindow = UIWindow() that will be save lots of "?" and "!"
thx