// // SBTRealTimeStatusVCtr.swift // SolarBT // // Created by weclouds on 2019/1/28. // Copyright © 2019 weclouds. All rights reserved. // import UIKit class SBTRealTimeStatusVCtr: UIViewController { @IBOutlet weak var tableView: UITableView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } } extension SBTRealTimeStatusVCtr:UITableViewDelegate,UITableViewDataSource{ func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 4 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { } }