我正在尝试使用以下代码将JSON数据传递给表viewCell。我已确认正在捕获JSON数据并将其存储在变量downloadLenderRates
中。但我无法将值传递给tabelView Cell。我确认正确命名了单元格标识符,并且正确命名了有助于管理tableView单元格的swift文件。此时,我运行应用程序时没有收到任何错误消息和空白表。我不知道为什么!
class MortgageRatesVC: UIViewController, UITableViewDataSource {
@IBOutlet weak var tableView: UITableView!
let mortgousURL = URL(string:"http://mortgous.com/JSON/currentRatesJSON.php")!
var lenderRates = [LenderRate]()
override func viewDidLoad() {
super.viewDidLoad()
downloadJason()
}
func downloadJason () {
lenderRates = []
// guard let downloadURL = url else { return }
URLSession.shared.dataTask(with: mortgousURL) { data, urlResponse, error in
guard let data = data else { return }
do {
let dateFormat = DateFormatter()
dateFormat.locale = Locale(identifier: "en_US_POSIX")
dateFormat.dateFormat = "yyyy-MM-dd"
let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .formatted(dateFormat)
let downloadLenderRates = try decoder.decode([LenderRate].self, from: data)
// print(downloadLenderRates)
self.lenderRates = downloadLenderRates
DispatchQueue.main.async {
self.tableView.reloadData()
}
} catch {
print(error)
}
}.resume()
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return lenderRates.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "LenderCell") as? LenderCell else { return UITableViewCell() }
cell.lenderNamelbl.text = lenderRates[indexPath.row].financialInstitution
print(lenderRates[indexPath.row].financialInstitution)
return cell
}
}
答案 0 :(得分:0)
语法
guard let cell = tableView.dequeueReusableCell(withIdentifier: "LenderCell") as? LenderCell else {
return UITableViewCell()
}
是非常糟糕的习惯。
guard
只有在出现设计错误时才会失败,例如,如果开发人员忘记将单元格的类设置为自定义类。在这种情况下,您不会在表格视图中看到任何内容。
这是推荐强行展开的少数情况之一。如果设计设置正确,则单元格有效,其类型为自定义类。进一步使用返回非可选单元格的API dequeueReusableCell(withIdentifier:for:)
。
let cell = tableView.dequeueReusableCell(withIdentifier: "LenderCell", for: indexPath) as! LenderCell