28 lines
783 B
Swift
28 lines
783 B
Swift
|
|
//
|
||
|
|
// SceneDelegate.swift
|
||
|
|
// SBrowser
|
||
|
|
//
|
||
|
|
// Created by James Magahern on 7/21/20.
|
||
|
|
//
|
||
|
|
|
||
|
|
import UIKit
|
||
|
|
|
||
|
|
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
|
||
|
|
var window: UIWindow?
|
||
|
|
let navigationController = UINavigationController()
|
||
|
|
let browserViewController = BrowserViewController()
|
||
|
|
|
||
|
|
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions)
|
||
|
|
{
|
||
|
|
guard let windowScene = (scene as? UIWindowScene) else { return }
|
||
|
|
|
||
|
|
navigationController.viewControllers = [ browserViewController ]
|
||
|
|
|
||
|
|
let window = UIWindow(windowScene: windowScene)
|
||
|
|
window.rootViewController = navigationController
|
||
|
|
window.makeKeyAndVisible()
|
||
|
|
self.window = window
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|