IHDashboardFloorMapVCtr.swift 643 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // IHDashboardFloorMapVCtr.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2019/12/13.
  6. // Copyright © 2019 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. import JXSegmentedView
  10. class IHDashboardFloorMapVCtr: UIViewController {
  11. let manager = IHFloorMapManager()
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. // view.backgroundColor = .white
  15. manager.bindController(self)
  16. }
  17. deinit {
  18. log.debug("IHDashboardFloorMapVCtr销毁")
  19. }
  20. }
  21. extension IHDashboardFloorMapVCtr:JXSegmentedListContainerViewListDelegate{
  22. func listView() -> UIView {
  23. return view
  24. }
  25. }