Update Sample View Controller

This commit is contained in:
Adlai Holler
2016-02-01 11:04:39 -08:00
parent 836ab9c17f
commit 67212c69b7
2 changed files with 13 additions and 28 deletions

View File

@@ -19,7 +19,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
let window = UIWindow(frame: UIScreen.mainScreen().bounds)
window.backgroundColor = UIColor.whiteColor()
window.rootViewController = ViewController(nibName: nil, bundle: nil)
window.rootViewController = ViewController()
window.makeKeyAndVisible()
self.window = window
return true