IHClassLightSettingCtr.swift 843 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // IHClassLightSettingCtr.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2020/7/24.
  6. // Copyright © 2020 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class IHClassLightSettingCtr: UIViewController {
  10. var roomStyle : NewEquipmentRoomStyle?
  11. var devData:DevData?
  12. let manager = IHClassLightingSettingManager()
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. view.backgroundColor = .white
  16. manager.bindController(self)
  17. }
  18. /*
  19. // MARK: - Navigation
  20. // In a storyboard-based application, you will often want to do a little preparation before navigation
  21. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  22. // Get the new view controller using segue.destination.
  23. // Pass the selected object to the new view controller.
  24. }
  25. */
  26. }