AppDelegate.swift 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // AppDelegate.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 16/08/22.
  6. //
  7. import UIKit
  8. @main
  9. class AppDelegate: UIResponder, UIApplicationDelegate {
  10. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  11. // Override point for customization after application launch.
  12. UserDefaults.standard.set(1, forKey: "menuActiveIndex")
  13. UserDefaults.standard.synchronize()
  14. return true
  15. }
  16. func applicationWillTerminate(_ application: UIApplication) {
  17. UserDefaults.standard.removeObject(forKey: "menuActiveIndex")
  18. UserDefaults.standard.synchronize()
  19. }
  20. // MARK: UISceneSession Lifecycle
  21. func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
  22. // Called when a new scene session is being created.
  23. // Use this method to select a configuration to create the new scene with.
  24. return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
  25. }
  26. func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
  27. // Called when the user discards a scene session.
  28. // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
  29. // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
  30. }
  31. }