12345678910111213141516171819202122232425262728293031 |
- //
- // SelectProductTypeViewController.swift
- // xingchuangke
- //
- // Created by Virgil on 2019/4/9.
- // Copyright © 2019 Virgil. All rights reserved.
- //
- import UIKit
- class SelectProductTypeViewController: BaseViewController {
- override func viewDidLoad() {
- super.viewDidLoad()
- self.title = "选择产品类型"
- initNavLeftBackButton()
- // Do any additional setup after loading the view.
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- }
- override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
- super.init(nibName: "MainViewController", bundle: nil)
- }
- required init?(coder aDecoder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- }
|