Created
December 20, 2019 07:53
-
-
Save jeffery812/5dbfd4892060aabd5b6ca5259db0f378 to your computer and use it in GitHub Desktop.
This file contains 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
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool | |
{ | |
let timeline = TimelineViewController() | |
let navigation = UINavigationController(rootViewController: timeline) | |
let frame = UIScreen.main.bounds | |
window = UIWindow(frame: frame) | |
window!.rootViewController = navigation | |
window!.makeKeyAndVisible() | |
return true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment