SplashViewController.swift 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // SplashViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 09/11/21.
  6. //
  7. import UIKit
  8. import SwiftyGif
  9. import GoogleSignIn
  10. class SplashViewController: UIViewController {
  11. @IBOutlet var gifLoaderImageView: UIImageView!
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. // Do any additional setup after loading the view.
  15. self.gifLoaderImageView.delegate = self
  16. }
  17. override func viewWillAppear(_ animated: Bool) {
  18. setupUI()
  19. }
  20. func setupUI() {
  21. let gif = try! UIImage(gifName: "gif_splash.gif")
  22. self.gifLoaderImageView.setGifImage(gif, loopCount: 1)
  23. }
  24. /*
  25. // MARK: - Navigation
  26. // In a storyboard-based application, you will often want to do a little preparation before navigation
  27. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  28. // Get the new view controller using segue.destination.
  29. // Pass the selected object to the new view controller.
  30. }
  31. */
  32. }
  33. extension SplashViewController : SwiftyGifDelegate {
  34. func gifDidStop(sender: UIImageView) {
  35. GIDSignIn.sharedInstance.restorePreviousSignIn { user, error in
  36. if error != nil || user == nil {
  37. // Show the app's signed-out state.
  38. DispatchQueue.main.async {
  39. let loginVC = self.storyboard?.instantiateViewController(withIdentifier: "LoginViewController") as! LoginViewController
  40. self.navigationController?.pushViewController(loginVC, animated: true)
  41. }
  42. } else {
  43. // Show the app's signed-in state.
  44. DispatchQueue.main.async {
  45. let loginVC = self.storyboard?.instantiateViewController(withIdentifier: "DashboardViewController") as! DashboardViewController
  46. self.navigationController?.pushViewController(loginVC, animated: true)
  47. }
  48. }
  49. }
  50. }
  51. }