IHEquipmentlistVCtr.swift 547 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // IHEquipmentlistVCtr.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2019/12/18.
  6. // Copyright © 2019 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. import JXSegmentedView
  10. class IHEquipmentlistVCtr: UIViewController {
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. view.backgroundColor = .random
  14. // Do any additional setup after loading the view.
  15. }
  16. }
  17. extension IHEquipmentlistVCtr :JXSegmentedListContainerViewListDelegate{
  18. func listView() -> UIView {
  19. return view
  20. }
  21. }