Created
April 8, 2019 21:49
-
-
Save akfreas/b2f802e90b63cee9263ffa66e9c0cced to your computer and use it in GitHub Desktop.
SimpleCounter AppDelegate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AppDelegate: UIResponder, UIApplicationDelegate { | |
var window: UIWindow? = UIWindow(frame: UIScreen.main.bounds) | |
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | |
window?.rootViewController = CounterViewController() | |
window?.makeKeyAndVisible() | |
return true | |
} | |
.... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment