如何使用urlsession函数更新TableViewCell?迅速

时间:2017-08-09 11:49:47

标签: swift uitableview nsurlsession urlsession

我有一个获取位置坐标和获取天气数据的功能。此函数用于代码中的其他位置。

目前我直接在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
}

1 个答案:

答案 0 :(得分:1)

cellForRowAt indexPath中触发网络电话是一个坏主意。只要用户滚动表视图,就会调用该方法。这可能会导致很多网络电话。

相反,你应该:

  • 仅在需要时进行网络通话。例如,您可以在viewWillAppear中执行此操作。每次应用切换到tableView
  • 时都会调用此方法
  • 网络电话的结果存储在模型中。这可能就像array一样简单。
  • 使用reloadData
  • 重绘tableView
  • 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
  }
}