12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // ActivityIndicator.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 25/08/22.
- //
- import UIKit
- import Foundation
- class ActivityIndicator: UIViewController {
-
- internal static var spinner: UIActivityIndicatorView?
- public static var style: UIActivityIndicatorView.Style = .large
- public static var baseBackColor = UIColor.black.withAlphaComponent(0.5)
- public static var baseColor = UIColor.lightGray
-
- public static func start(style: UIActivityIndicatorView.Style = style, backColor: UIColor = baseBackColor, baseColor: UIColor = baseColor) {
- NotificationCenter.default.addObserver(self, selector: #selector(update), name: UIDevice.orientationDidChangeNotification, object: nil)
- if spinner == nil, let window = UIWindow.key {
- let frame = UIScreen.main.bounds
- spinner = UIActivityIndicatorView(frame: frame)
- spinner!.backgroundColor = backColor
- spinner!.style = style
- spinner?.color = baseColor
- window.addSubview(spinner!)
- spinner!.startAnimating()
- }
- }
-
- public static func stop() {
- if spinner != nil {
- spinner!.stopAnimating()
- spinner!.removeFromSuperview()
- spinner = nil
- }
- }
-
- @objc public static func update() {
- if spinner != nil {
- stop()
- start()
- }
- }
-
- }
|