JSONデータをviewCellテーブルに渡すために以下のコードを取得しようとしています。 JSONデータがキャプチャされ、変数downloadLenderRates
に保存されていることを確認しました。しかし、値をTabelView Cellに渡すことはできません。私は、セル識別子が正しく指定されていることを確認し、テーブルビューのセルの管理に役立つ迅速なファイル名が正しく指定されています。この時点で、アプリケーションを実行するとエラーメッセージは表示されず、空白のテーブルが表示されます。なぜわからないのですか?JSONデータがtableView Cellに渡されない
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
}
}
あなたがテーブルビューのデリゲート 'クラスMortgageRatesVCとしてあなたのビューコントローラを設定していることを確認してください:のUIViewController、UITableViewDelegate、UITableViewDataSource {'とviewDidLoadメソッド内で 'tableView.delegate = self' –
あなたのtableView cellForRowAt方法でprint文を追加し、それが呼び出されていることを確認してください。 –
Btwは、downloadLenderRatesオブジェクトを作成する必要はありません。デコードの結果を配列 'self.lenderRates = try decoder.decode([LenderRate] .self、from:data)' –