SwiftModalWebVC.swift 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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 didReceiveServerRedirectForProvisionalNavigation(url: URL)
  12. func didFinishLoading(success: Bool, url: URL)
  13. }
  14. public class SwiftModalWebVC: UINavigationController {
  15. public weak var delegateWeb: SwiftModalWebVCDelegate?
  16. public enum SwiftModalWebVCTheme {
  17. case lightBlue, lightBlack, dark, loginWeb
  18. }
  19. weak var webViewDelegate: UIWebViewDelegate? = nil
  20. public convenience init(urlString: String) {
  21. self.init(pageURL: URL(string: urlString)!)
  22. }
  23. public convenience init(urlString: String, theme: SwiftModalWebVCTheme) {
  24. self.init(pageURL: URL(string: urlString)!, theme: theme)
  25. }
  26. public convenience init(pageURL: URL) {
  27. self.init(request: URLRequest(url: pageURL))
  28. }
  29. public convenience init(pageURL: URL, theme: SwiftModalWebVCTheme) {
  30. self.init(request: URLRequest(url: pageURL), theme: theme)
  31. }
  32. public init(request: URLRequest, theme: SwiftModalWebVCTheme = .dark, color : UIColor = UIColor.clear) {
  33. let webViewController = SwiftWebVC(aRequest: request)
  34. webViewController.storedStatusColor = UINavigationBar.appearance().barStyle
  35. let doneButton = UIBarButtonItem(image: SwiftWebVC.bundledImage(named: "SwiftWebVCDismiss"),
  36. style: UIBarButtonItemStyle.plain,
  37. target: webViewController,
  38. action: #selector(SwiftWebVC.doneButtonTapped))
  39. switch theme {
  40. case .lightBlue:
  41. doneButton.tintColor = nil
  42. webViewController.buttonColor = nil
  43. webViewController.titleColor = UIColor.black
  44. UINavigationBar.appearance().barStyle = UIBarStyle.default
  45. case .lightBlack:
  46. doneButton.tintColor = UIColor.darkGray
  47. webViewController.buttonColor = UIColor.darkGray
  48. webViewController.titleColor = UIColor.black
  49. UINavigationBar.appearance().barStyle = UIBarStyle.default
  50. case .dark:
  51. doneButton.tintColor = UIColor.white
  52. webViewController.buttonColor = UIColor.white
  53. webViewController.titleColor = UIColor.groupTableViewBackground
  54. UINavigationBar.appearance().barStyle = UIBarStyle.black
  55. case .loginWeb:
  56. webViewController.buttonColor = UIColor.white
  57. UINavigationBar.appearance().barStyle = UIBarStyle.default
  58. webViewController.toobar = false
  59. }
  60. if (theme != .loginWeb) {
  61. if (UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.pad) {
  62. webViewController.navigationItem.leftBarButtonItem = doneButton
  63. }
  64. else {
  65. webViewController.navigationItem.rightBarButtonItem = doneButton
  66. }
  67. }
  68. super.init(rootViewController: webViewController)
  69. webViewController.delegate = self
  70. }
  71. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  72. super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
  73. }
  74. required public init(coder aDecoder: NSCoder) {
  75. fatalError("init(coder:) has not been implemented")
  76. }
  77. override public func viewWillAppear(_ animated: Bool) {
  78. super.viewWillAppear(false)
  79. }
  80. }
  81. extension SwiftModalWebVC: SwiftWebVCDelegate {
  82. public func didStartLoading() {
  83. self.delegateWeb?.didStartLoading()
  84. }
  85. public func didReceiveServerRedirectForProvisionalNavigation(url: URL) {
  86. self.delegateWeb?.didReceiveServerRedirectForProvisionalNavigation(url: url)
  87. }
  88. public func didFinishLoading(success: Bool) {
  89. print("Finished loading. Success: \(success).")
  90. }
  91. public func didFinishLoading(success: Bool, url: URL) {
  92. self.delegateWeb?.didFinishLoading(success: success, url: url)
  93. }
  94. }