-
Notifications
You must be signed in to change notification settings - Fork 3
iOS View Controllers
Kevin Leong edited this page Sep 11, 2016
·
7 revisions
// in AppDelegate#didFinishLaunchingWithOptions
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
let tabBarViewController = UITabBarController()
if let window = self.window {
window.rootViewController = tabBarViewController
window.makeKeyAndVisible()
}
- Apple Developer