CommonWebViewViewController.swift 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. //
  2. // CommonWebViewViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/27.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class CommonWebViewViewController: BaseViewController {
  10. /// 0 url地址 1:html内容
  11. var sourceType = 0
  12. var url = ""
  13. var strTitle = ""
  14. var strContent = ""
  15. lazy var wkWebView = {
  16. () -> WKWebView in
  17. let config = WKWebViewConfiguration.init()
  18. let wkWebView = WKWebView.init(frame: CGRect.zero, configuration: config)
  19. return wkWebView
  20. }()
  21. override func viewDidLoad() {
  22. super.viewDidLoad()
  23. self.setNavBackgroud(isWhite: false)
  24. initNavLeftBackButton()
  25. self.title = strTitle
  26. wkWebView.frame = self.view.bounds
  27. self.view.addSubview(wkWebView)
  28. if sourceType == 1 {
  29. wkWebView.loadHTMLString(strContent, baseURL: nil)
  30. } else {
  31. wkWebView.load(NSURLRequest(url: NSURL(string: url)! as URL) as URLRequest)
  32. }
  33. // Do any additional setup after loading the view.
  34. }
  35. override func viewWillAppear(_ animated: Bool) {
  36. super.viewWillAppear(animated)
  37. self.setNavBackgroud(isWhite: true)
  38. }
  39. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  40. super.init(nibName: "CommonWebViewViewController", bundle: nil)
  41. }
  42. required init?(coder aDecoder: NSCoder) {
  43. fatalError("init(coder:) has not been implemented")
  44. }
  45. /*
  46. // MARK: - Navigation
  47. // In a storyboard-based application, you will often want to do a little preparation before navigation
  48. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  49. // Get the new view controller using segue.destination.
  50. // Pass the selected object to the new view controller.
  51. }
  52. */
  53. }