1234567891011121314151617181920212223242526272829303132333435 |
- //
- // IHPanelSettingCtr.swift
- // Inhealth
- //
- // Created by weclouds on 2020/7/25.
- // Copyright © 2020 weclouds. All rights reserved.
- //
- import UIKit
- class IHPanelSettingCtr: UIViewController {
-
- var roomStyle : NewEquipmentRoomStyle?
- var devData:DevData?
-
- let manager = IHPanelSettingManager()
- override func viewDidLoad() {
- super.viewDidLoad()
- view.backgroundColor = .white
- manager.bindController(self)
-
- }
- /*
- // MARK: - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
- // Get the new view controller using segue.destination.
- // Pass the selected object to the new view controller.
- }
- */
- }
|