1234567891011121314151617181920212223242526 |
- //
- // IHClassGatewayCtr.swift
- // Inhealth
- //
- // Created by weclouds on 2020/8/19.
- // Copyright © 2020 weclouds. All rights reserved.
- //
- import UIKit
- class IHClassGatewayCtr: UIViewController {
- var gatewayList : [gatewayInfor]?
- let manager = IHClassGatewayManager()
- override func viewDidLoad() {
- super.viewDidLoad()
- manager.bindController(self)
- NotificationCenter.default.addObserver(self, selector: #selector(disssVC), name: NSNotification.Name(KNotifiDissVC), object: nil)
-
- }
- @objc func disssVC(){
- self.dismiss(animated: false, completion: nil)
- }
- deinit {
- log.debug("IHClassGatewayCtr销毁")
- }
- }
|