12345678910111213141516171819202122232425262728 |
- //
- // IHConfigGatawayDetailCtr.swift
- // Inhealth
- //
- // Created by weclouds on 2020/8/25.
- // Copyright © 2020 weclouds. All rights reserved.
- //
- import UIKit
- class IHConfigGatawayDetailCtr: UIViewController {
- var gateway : gatewayInfor?
- let manager = IHConfigGatawayDetailManager()
- override func viewDidLoad() {
- super.viewDidLoad()
- self.view.backgroundColor = .white
- self.navigationController?.view.frame.size.height = KSCREENHEIGHT
- self.view.frame.size.height = KSCREENHEIGHT
-
-
- manager.bindController(self)
-
- }
-
- deinit {
- log.debug("IHConfigGatawayDetailCtr销毁")
- }
- }
|