Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class SceneDelegate: UIResponder, UIWindowSceneDelegate {
  2. var window: UIWindow?
  3. func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
  4. guard let windowScene = (scene as? UIWindowScene) else { return }
  5. window = UIWindow(windowScene: windowScene)
  6. window.rootViewController = PostNLRootViewController()
  7. window.makeKeyAndVisible()
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement