-
Notifications
You must be signed in to change notification settings - Fork 419
Expand file tree
/
Copy pathAppDelegate.swift
More file actions
27 lines (21 loc) · 800 Bytes
/
Copy pathAppDelegate.swift
File metadata and controls
27 lines (21 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// AppDelegate.swift
// Userscripts-iOS
//
// Created by Justin Wasack on 10/3/21.
// Copyright © 2021 Justin Wasack. All rights reserved.
//
import UIKit
//import os
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
initializeFirstStart()
return true
}
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
}
}