NetworkIndicator.swift 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // NetworkIndicator.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 31/08/21.
  6. //
  7. import Foundation
  8. import UIKit
  9. open class NetworkIndicator {
  10. var containerView = UIView()
  11. var progressView = UIView()
  12. var activityIndicator = UIActivityIndicatorView()
  13. open class var networkIndicator:NetworkIndicator{
  14. struct Static{
  15. static let progressBar:NetworkIndicator = NetworkIndicator()
  16. }
  17. return Static.progressBar
  18. }
  19. open func showProgressView(_ view: UIView){
  20. DispatchQueue.main.async {
  21. self.containerView.frame = view.frame
  22. self.containerView.center = view.center
  23. self.containerView.backgroundColor = UIColor.clear
  24. self.progressView.frame = CGRect(x: 0, y: 0, width: 80, height: 80)
  25. self.progressView.center = view.center
  26. self.progressView.backgroundColor = UIColor(hex: 0x444444, alpha: 0.7)
  27. self.progressView.clipsToBounds = true
  28. self.progressView.layer.cornerRadius = 10
  29. self.activityIndicator.frame = CGRect(x: 0, y: 0, width: 40, height: 40)
  30. self.activityIndicator.style = .large
  31. self.activityIndicator.center = CGPoint(x: self.progressView.bounds.width / 2, y: self.progressView.bounds.height / 2)
  32. DispatchQueue.main.async {
  33. self.progressView.addSubview(self.activityIndicator)
  34. self.containerView.addSubview(self.progressView)
  35. view.addSubview(self.containerView)
  36. view.bringSubviewToFront(self.containerView)
  37. self.activityIndicator.startAnimating()
  38. }
  39. }
  40. }
  41. open func hideProgressView(){
  42. DispatchQueue.main.async {
  43. self.activityIndicator.stopAnimating()
  44. self.containerView.removeFromSuperview()
  45. }
  46. }
  47. }
  48. extension UIColor {
  49. convenience init(hex: UInt32, alpha: CGFloat) {
  50. let red = CGFloat((hex & 0xFF0000) >> 16)/256.0
  51. let green = CGFloat((hex & 0xFF00) >> 8)/256.0
  52. let blue = CGFloat(hex & 0xFF)/256.0
  53. self.init(red: red, green: green, blue: blue, alpha: alpha)
  54. }
  55. }