我正试图将请求的结果从一个api显示到一个单元格中。我能够发出请求并解析数据。但当我试图在单元格中显示内容并打印单元格值时,结果是可选的(“”)。有人能解释一下原因吗。
cell.restaurantNameLabel.text = apiDataModel.restaurantName
apiDataModel.restaurantName
不是nil
感谢您的帮助!谢谢
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! DiscoverTableViewCell
cell.discoverImage.image = UIImage(named: "Detail")
cell.restaurantNameLabel.text = apiDataModel.restaurantName
return cell
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let currentCell = tableView.cellForRow(at: indexPath) as! DiscoverTableViewCell
print(currentCell.restaurantNameLabel.text)
}
func search(url: String, parameters : [String:String]) {
let headers: HTTPHeaders = ["Authorization":"Bearer \(apiKey)"]
Alamofire.request(url, method: .get, parameters: parameters, headers: headers ) .responseJSON{
URLResponse in
//print(URLResponse)
if URLResponse.result.isSuccess {
let yelpDataJSON = JSON(URLResponse.value!)
self.updateYelpData(Json: yelpDataJSON)
print("\(yelpDataJSON)")
}else{
print("error")
}
}
}
func updateYelpData(Json : JSON){
if let nameJSON = Json["businesses"][0]["name"].string {
apiDataModel.restaurantName = nameJSON
print(apiDataModel.restaurantName)
apiDataModel.restaurantLocation = Json["businesses"][0]["location"]["display_address"][0].stringValue
}else{
print("error")
}
}
最佳答案
您没有向我们展示您在哪里调用了search
,但是request
是一个异步方法,但是您从未在reloadData
中的表视图上调用过updateYelpData
。因此,表视图的初始填充是在Alamofire检索和解析数据之前发生的。
如果在tableView.reloadData()
中放入updateYelpData
,则在Alamofire检索到表视图后,它将使用实际数据进行更新。
关于ios - 为什么tableviewcell返回可选的(“”),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55667680/