IHClassGatewayCtr.swift 685 B

1234567891011121314151617181920212223242526
  1. //
  2. // IHClassGatewayCtr.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2020/8/19.
  6. // Copyright © 2020 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class IHClassGatewayCtr: UIViewController {
  10. var gatewayList : [gatewayInfor]?
  11. let manager = IHClassGatewayManager()
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. manager.bindController(self)
  15. NotificationCenter.default.addObserver(self, selector: #selector(disssVC), name: NSNotification.Name(KNotifiDissVC), object: nil)
  16. }
  17. @objc func disssVC(){
  18. self.dismiss(animated: false, completion: nil)
  19. }
  20. deinit {
  21. log.debug("IHClassGatewayCtr销毁")
  22. }
  23. }