SBTRealTimeStatusVCtr.swift 713 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // SBTRealTimeStatusVCtr.swift
  3. // SolarBT
  4. //
  5. // Created by weclouds on 2019/1/28.
  6. // Copyright © 2019 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. class SBTRealTimeStatusVCtr: UIViewController {
  10. @IBOutlet weak var tableView: UITableView!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. // Do any additional setup after loading the view.
  14. }
  15. }
  16. extension SBTRealTimeStatusVCtr:UITableViewDelegate,UITableViewDataSource{
  17. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  18. return 4
  19. }
  20. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  21. }
  22. }