Last active
August 29, 2015 14:07
-
-
Save uberbruns/e3e04be8497deea0203f to your computer and use it in GitHub Desktop.
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
import UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
var window: UIWindow? | |
let rootViewController = RootViewController() | |
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
let window = UIWindow(frame: UIScreen.mainScreen().bounds) | |
window.rootViewController = rootViewController; | |
window.makeKeyAndVisible() | |
self.window = window | |
return true; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment