AppDelegate.swift 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // AppDelegate.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 12/08/21.
  6. //
  7. import UIKit
  8. import Firebase
  9. import GoogleSignIn
  10. import IQKeyboardManagerSwift
  11. @main
  12. class AppDelegate: UIResponder, UIApplicationDelegate {
  13. var window: UIWindow?
  14. let netConnection = NetMonitor.shared
  15. var timer = Timer()
  16. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  17. // Override point for customization after application launch.
  18. FirebaseApp.configure()
  19. IQKeyboardManager.shared.enable = true
  20. netConnection.startMonitoring()
  21. //Run schedule timer for background API calls
  22. //scheduledTimerWithTimeInterval()
  23. return true
  24. }
  25. func scheduledTimerWithTimeInterval() {
  26. timer = Timer.scheduledTimer(timeInterval: 300, target: self, selector: #selector(self.updateCounting), userInfo: nil, repeats: true)
  27. }
  28. @objc func updateCounting() {
  29. DispatchQueue.global(qos: .background).async {
  30. if self.netConnection.netOn {
  31. print("This is run on the background queue")
  32. }
  33. DispatchQueue.main.async {
  34. print("This is run on the main queue, after the previous code in outer block")
  35. }
  36. }
  37. }
  38. func application(_ app: UIApplication,open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
  39. var handled: Bool
  40. handled = GIDSignIn.sharedInstance.handle(url)
  41. if handled {
  42. return true
  43. }
  44. // Handle other custom URL types.
  45. // If not handled by this app, return false.
  46. return false
  47. }
  48. // MARK: UISceneSession Lifecycle
  49. func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
  50. // Called when a new scene session is being created.
  51. // Use this method to select a configuration to create the new scene with.
  52. return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
  53. }
  54. func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
  55. // Called when the user discards a scene session.
  56. // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
  57. // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
  58. }
  59. func applicationWillTerminate(_ application: UIApplication) {
  60. timer.invalidate()
  61. netConnection.stopMonitoring()
  62. }
  63. }