SelectProductTypeViewController.swift 798 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // SelectProductTypeViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/9.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class SelectProductTypeViewController: BaseViewController {
  10. override func viewDidLoad() {
  11. super.viewDidLoad()
  12. self.title = "选择产品类型"
  13. initNavLeftBackButton()
  14. // Do any additional setup after loading the view.
  15. }
  16. override func viewWillAppear(_ animated: Bool) {
  17. super.viewWillAppear(animated)
  18. }
  19. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  20. super.init(nibName: "MainViewController", bundle: nil)
  21. }
  22. required init?(coder aDecoder: NSCoder) {
  23. fatalError("init(coder:) has not been implemented")
  24. }
  25. }