ActivityIndicator.swift 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // ActivityIndicator.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 16/11/21.
  6. //
  7. import UIKit
  8. import Foundation
  9. class ActivityIndicator: UIViewController {
  10. internal static var spinner: UIActivityIndicatorView?
  11. public static var style: UIActivityIndicatorView.Style = .large
  12. public static var baseBackColor = UIColor.black.withAlphaComponent(0.5)
  13. public static var baseColor = UIColor.red
  14. public static func start(style: UIActivityIndicatorView.Style = style, backColor: UIColor = baseBackColor, baseColor: UIColor = baseColor) {
  15. NotificationCenter.default.addObserver(self, selector: #selector(update), name: UIDevice.orientationDidChangeNotification, object: nil)
  16. if spinner == nil, let window = UIWindow.key {
  17. let frame = UIScreen.main.bounds
  18. spinner = UIActivityIndicatorView(frame: frame)
  19. spinner!.backgroundColor = backColor
  20. spinner!.style = style
  21. spinner?.color = baseColor
  22. window.addSubview(spinner!)
  23. spinner!.startAnimating()
  24. }
  25. }
  26. public static func stop() {
  27. if spinner != nil {
  28. spinner!.stopAnimating()
  29. spinner!.removeFromSuperview()
  30. spinner = nil
  31. }
  32. }
  33. @objc public static func update() {
  34. if spinner != nil {
  35. stop()
  36. start()
  37. }
  38. }
  39. }