AppDelegate.swift 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. //
  2. // AppDelegate.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 07/11/21.
  6. //
  7. import UIKit
  8. import CoreData
  9. import IQKeyboardManagerSwift
  10. @main
  11. class AppDelegate: UIResponder, UIApplicationDelegate {
  12. var window: UIWindow?
  13. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  14. // Override point for customization after application launch.
  15. IQKeyboardManager.shared.enable = true
  16. return true
  17. }
  18. // MARK: UISceneSession Lifecycle
  19. func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
  20. // Called when a new scene session is being created.
  21. // Use this method to select a configuration to create the new scene with.
  22. return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
  23. }
  24. func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
  25. // Called when the user discards a scene session.
  26. // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
  27. // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
  28. }
  29. // MARK: - Core Data stack
  30. lazy var persistentContainer: NSPersistentContainer = {
  31. /*
  32. The persistent container for the application. This implementation
  33. creates and returns a container, having loaded the store for the
  34. application to it. This property is optional since there are legitimate
  35. error conditions that could cause the creation of the store to fail.
  36. */
  37. let container = NSPersistentContainer(name: "Product_Calculator")
  38. container.loadPersistentStores(completionHandler: { (storeDescription, error) in
  39. if let error = error as NSError? {
  40. // Replace this implementation with code to handle the error appropriately.
  41. // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
  42. /*
  43. Typical reasons for an error here include:
  44. * The parent directory does not exist, cannot be created, or disallows writing.
  45. * The persistent store is not accessible, due to permissions or data protection when the device is locked.
  46. * The device is out of space.
  47. * The store could not be migrated to the current model version.
  48. Check the error message to determine what the actual problem was.
  49. */
  50. fatalError("Unresolved error \(error), \(error.userInfo)")
  51. }
  52. })
  53. return container
  54. }()
  55. // MARK: - Core Data Saving support
  56. func saveContext () {
  57. let context = persistentContainer.viewContext
  58. if context.hasChanges {
  59. do {
  60. try context.save()
  61. } catch {
  62. // Replace this implementation with code to handle the error appropriately.
  63. // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
  64. let nserror = error as NSError
  65. fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
  66. }
  67. }
  68. }
  69. }