Repositorio del curso CCOM4030 el semestre B91 del proyecto Trolley

AppDelegate.swift 1.4KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // AppDelegate.swift
  3. // Trolley App
  4. //
  5. // Created by Kendrick Morales on 10/21/19.
  6. // Copyright © 2019 Kendrick Morales. All rights reserved.
  7. //
  8. import UIKit
  9. @UIApplicationMain
  10. class AppDelegate: UIResponder, UIApplicationDelegate {
  11. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  12. // Override point for customization after application launch.
  13. return true
  14. }
  15. // MARK: UISceneSession Lifecycle
  16. func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
  17. // Called when a new scene session is being created.
  18. // Use this method to select a configuration to create the new scene with.
  19. return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
  20. }
  21. func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
  22. // Called when the user discards a scene session.
  23. // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
  24. // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
  25. }
  26. }