IOS Swift UITable 使用
首要条件
1 | // 继承 与 UITableViewController |
设置总行数
1 | override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { |
重写Cell的显示
1 | override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { |
只显示有数据的 Cell
1 | self.tableView.tableFooterView = UIView() |