12345678910111213141516171819202122232425262728293031 |
- //
- // IHDashboardFloorMapVCtr.swift
- // Inhealth
- //
- // Created by weclouds on 2019/12/13.
- // Copyright © 2019 weclouds. All rights reserved.
- //
- import UIKit
- import JXSegmentedView
- class IHDashboardFloorMapVCtr: UIViewController {
- let manager = IHFloorMapManager()
- override func viewDidLoad() {
- super.viewDidLoad()
- // view.backgroundColor = .white
- manager.bindController(self)
- }
-
- deinit {
- log.debug("IHDashboardFloorMapVCtr销毁")
- }
- }
- extension IHDashboardFloorMapVCtr:JXSegmentedListContainerViewListDelegate{
- func listView() -> UIView {
- return view
- }
-
-
- }
|