1234567891011121314151617181920212223242526272829 |
- //
- // IHEquipmentlistVCtr.swift
- // Inhealth
- //
- // Created by weclouds on 2019/12/18.
- // Copyright © 2019 weclouds. All rights reserved.
- //
- import UIKit
- import JXSegmentedView
- class IHEquipmentlistVCtr: UIViewController {
- override func viewDidLoad() {
- super.viewDidLoad()
- view.backgroundColor = .random
- // Do any additional setup after loading the view.
- }
-
- }
- extension IHEquipmentlistVCtr :JXSegmentedListContainerViewListDelegate{
- func listView() -> UIView {
- return view
- }
-
-
- }
|