我有一个获取位置坐标和获取天气数据的功能。此函数用于代码中的其他位置。
目前我直接在cellForRowAt中使用urlsession,但不想重复代码。有没有办法在TableViewController的cellForRowAt中调用这个天气函数来更新单元格?
class Data {
static func weather (_ coord:String, completion: @escaping...([String?]) -> (){
let url = URL(string: "https://")
let task = URLSession.shared.dataTask(with: url!) { data, response, error in
let json = processData(data) //returns [String]?
completion(json)
}
task.resume()
}
static func processData(_ data: Data) -> [String]? {
}
}
在cellForRowAt中,如何在返回单元格之前修改天气函数以获取值,但是完成天气功能的原始功能还应该保留?
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = ...
Data.weather() ** ??? **
cell.label.text = "" // value from weather
return cell
}
答案 0 :(得分:1)
在cellForRowAt indexPath
中触发网络电话是一个坏主意。只要用户滚动表视图,就会调用该方法。这可能会导致很多网络电话。
相反,你应该:
viewWillAppear
中执行此操作。每次应用切换到tableView array
一样简单。reloadData
cellForRowAt indexPath
中使用array
。让我们看一个例子(它不完整,但应该给你一个想法,该怎么做):
class WeatherTableView: UITableView {
var weatherData: [String]
override func viewWillAppear(_ animated: Bool) {
loadWeatherData()
}
private func loadWeatherData() {
// I just set some data here directly. Replace this with your network call
weatherData = ["Here comes the sun", "Rainy with chance of meatballs", "It's raining cats and dogs"]
// Make sure the tableView is redrawn
tableView.reloadData()
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "weatherDataCell")
cell.label.text = weatherData[indexPath.row]
return cell
}
}