SwiftModalWebVC.swift 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. //
  2. // SwiftModalWebVC.swift
  3. //
  4. // Created by Myles Ringle on 24/06/2015.
  5. // Transcribed from code used in SVWebViewController.
  6. // Copyright (c) 2015 Myles Ringle & Oliver Letterer. All rights reserved.
  7. //
  8. import UIKit
  9. public protocol SwiftModalWebVCDelegate: class {
  10. func didStartLoading()
  11. func didFinishLoading(success: Bool, url: URL)
  12. }
  13. public class SwiftModalWebVC: UINavigationController {
  14. public weak var delegateWeb: SwiftModalWebVCDelegate?
  15. public enum SwiftModalWebVCTheme {
  16. case lightBlue, lightBlack, dark, customLoginWeb
  17. }
  18. weak var webViewDelegate: UIWebViewDelegate? = nil
  19. public convenience init(urlString: String) {
  20. self.init(pageURL: URL(string: urlString)!)
  21. }
  22. public convenience init(urlString: String, theme: SwiftModalWebVCTheme) {
  23. self.init(pageURL: URL(string: urlString)!, theme: theme)
  24. }
  25. public convenience init(urlString: String, theme: SwiftModalWebVCTheme, color : UIColor) {
  26. self.init(pageURL: URL(string: urlString)!, theme: theme, color: color)
  27. }
  28. public convenience init(pageURL: URL) {
  29. self.init(request: URLRequest(url: pageURL))
  30. }
  31. public convenience init(pageURL: URL, theme: SwiftModalWebVCTheme) {
  32. self.init(request: URLRequest(url: pageURL), theme: theme)
  33. }
  34. public convenience init(pageURL: URL, theme: SwiftModalWebVCTheme, color : UIColor) {
  35. self.init(request: URLRequest(url: pageURL), theme: theme, color: color)
  36. }
  37. public init(request: URLRequest, theme: SwiftModalWebVCTheme = .dark, color : UIColor = UIColor.clear) {
  38. let webViewController = SwiftWebVC(aRequest: request)
  39. webViewController.storedStatusColor = UINavigationBar.appearance().barStyle
  40. let doneButton = UIBarButtonItem(image: SwiftWebVC.bundledImage(named: "SwiftWebVCDismiss"),
  41. style: UIBarButtonItemStyle.plain,
  42. target: webViewController,
  43. action: #selector(SwiftWebVC.doneButtonTapped))
  44. switch theme {
  45. case .lightBlue:
  46. doneButton.tintColor = nil
  47. webViewController.buttonColor = nil
  48. webViewController.titleColor = UIColor.black
  49. UINavigationBar.appearance().barStyle = UIBarStyle.default
  50. case .lightBlack:
  51. doneButton.tintColor = UIColor.darkGray
  52. webViewController.buttonColor = UIColor.darkGray
  53. webViewController.titleColor = UIColor.black
  54. UINavigationBar.appearance().barStyle = UIBarStyle.default
  55. case .dark:
  56. doneButton.tintColor = UIColor.white
  57. webViewController.buttonColor = UIColor.white
  58. webViewController.titleColor = UIColor.groupTableViewBackground
  59. UINavigationBar.appearance().barStyle = UIBarStyle.black
  60. case .customLoginWeb:
  61. webViewController.buttonColor = UIColor.white
  62. UINavigationBar.appearance().barStyle = UIBarStyle.default
  63. UINavigationBar.appearance().tintColor = color
  64. }
  65. if (theme != .customLoginWeb) {
  66. if (UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.pad) {
  67. webViewController.navigationItem.leftBarButtonItem = doneButton
  68. }
  69. else {
  70. webViewController.navigationItem.rightBarButtonItem = doneButton
  71. }
  72. }
  73. super.init(rootViewController: webViewController)
  74. webViewController.delegate = self
  75. }
  76. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  77. super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
  78. }
  79. required public init(coder aDecoder: NSCoder) {
  80. fatalError("init(coder:) has not been implemented")
  81. }
  82. override public func viewWillAppear(_ animated: Bool) {
  83. super.viewWillAppear(false)
  84. }
  85. }
  86. extension SwiftModalWebVC: SwiftWebVCDelegate {
  87. public func didStartLoading() {
  88. self.delegateWeb?.didStartLoading()
  89. }
  90. public func didFinishLoading(success: Bool) {
  91. print("Finished loading. Success: \(success).")
  92. }
  93. public func didFinishLoading(success: Bool, url: URL) {
  94. self.delegateWeb?.didFinishLoading(success: success, url: url)
  95. }
  96. }