NewsBlur-viq/clients/ios/Classes/SceneDelegate.swift
David Sinclair f316f39806 #1247 (Mac Catalyst edition)
- Migrated to modern window scene support.
- Customized the menu bar, with Theme submenu, and new Site and Story menus (some items not implemented yet).
2023-11-15 21:30:14 -06:00

20 lines
521 B
Swift

//
// SceneDelegate.swift
// NewsBlur
//
// Created by David Sinclair on 2023-11-15.
// Copyright © 2023 NewsBlur. All rights reserved.
//
import UIKit
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
let appDelegate: NewsBlurAppDelegate = .shared
var window: UIWindow?
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
appDelegate.window = window
appDelegate.prepareViewControllers()
}
}