我正在尝试解析JSON并获取“名称”的参数值。我想在表格视图单元格的标签中显示邮政编码区域的名称。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ourCell") as! ourTableViewCell
let temp = pinCodeData!["Post Office"][indexPath.row][0].dictionaryObject as! Dictionary<String,String>
let temp2 = temp["Name"]
print(temp)
cell.ourLabel.text = temp2
return cell
}
let apiURL = "http://www.postalpincode.in/api/pincode/122001"
func ret(){
Alamofire.request(apiURL, method: .get).responseJSON { (response) in
DispatchQueue.main.async {
if response.result.isSuccess {
self.pinCodeData = JSON(response.result.value!)
self.outTableView.reloadData()
}
}
}
}