Вам нужно вызвать reloadData()
в табличном представлении внутри вашего блока завершения initialization
.
Обновление viewDidLoad
:
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.delegate = self
initialization {
print("succ")
print(self.days.count)
tableView.reloadData()
}
// Do not print days.count here because days isn't updated yet
}
И лучше всего обновить модель данных в главной очереди:
func initialization(completed:@escaping () -> ()){
let jsonUrlString="http://api.openweathermap.org/data/2.5/forecast?zip=22003&appid=c632597b1892b4d415c64ca0e9fca1f1"
guard let url = URL(string: jsonUrlString) else { return }
URLSession.shared.dataTask(with: url) { (data, response, err) in
guard let data = data else { return }
do {
let downloadDays = try JSONDecoder().decode(TestingClass.self, from: data)
DispatchQueue.main.async {
self.days = downloadDays.list
completed()
}
} catch let jsonErr {
print("Error serializing json:", jsonErr)
}
}.resume()
}
Вы также должны соответствовать UITableViewDataSource
:
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSoure {