// Copyright © 2017 Schibsted. All rights reserved. import UIKit @UIApplicationMain final class AppDelegate: UIResponder, UIApplicationDelegate, UISplitViewControllerDelegate { var window: UIWindow? func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { window = UIWindow() let editController = EditViewController() window?.rootViewController = UINavigationController(rootViewController: editController) editController.showPreview(animated: false) window?.makeKeyAndVisible() return true } }