ApplyCardebViewTViewController.swift 1.9 KB

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