Skip to content

Instantly share code, notes, and snippets.

@numanayhan
Created December 16, 2019 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save numanayhan/329d0e50a1ea3fe785a9680a5b77aaef to your computer and use it in GitHub Desktop.
Save numanayhan/329d0e50a1ea3fe785a9680a5b77aaef to your computer and use it in GitHub Desktop.
Panda
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
}
// MARK: UISceneSession Lifecycle
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
}
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment