我更新了Xcode,此後我的數據庫出現問題。 代碼:'UITableView'未能從其dataSource獲取單元格
override func numberOfSections(in tableView: UITableView) -> Int {
// return the number of sections
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
// return the number of rows
return leadItems.count
}
func cellForRow(at indexPath: IndexPath) -> UITableViewCell?
{
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! LeadsTableViewCell
// Configure the cell...
cell.user_name_label.text = leadItems[indexPath.row].user_name
cell.school_name_label.text = leadItems[indexPath.row].school_name
return cell
}
錯誤,我得到的是:
終止應用程序由於未捕獲的異常 'NSInternalInconsistencyException',原因:「的UITableView(;層=; contentOffset:{0,-64} ; contentSize:{375,65802}>)未能從其DataSource()
cellForRowAtIndexPath返回零 –