// // IHAreaSearchVCtr.swift // Inhealth // // Created by weclouds on 2019/12/27. // Copyright © 2019 weclouds. All rights reserved. // import UIKit class IHAreaSearchVCtr: UIViewController { var floorList:[RoomListData]? let manager = IHAreaSeachManager() override func viewDidLoad() { super.viewDidLoad() manager.bindController(self) view.backgroundColor = .white } override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) //处理导航栏上移64问题 self.navigationController?.extendedLayoutIncludesOpaqueBars = true //处理tableView下移问题 self.extendedLayoutIncludesOpaqueBars = true } }