我是新來的swift。我試圖解析從迅速3. URL我使用此代碼試圖數據:alamofire json解析swift 3
Alamofire.request("https://jsonplaceholder.typicode.com/todos").responseJSON { response in
if let JSON = response.result.value {
print("JSON: \(JSON)")
}
}
而且我得到了JSON如下:
JSON: (
{
completed = 0;
id = 1;
title = "delectus aut autem";
userId = 1;
},
{
completed = 0;
id = 2;
title = "quis ut nam facilis et officia qui";
userId = 1;
})
任何人都可以幫助我如何解析所有該值的字典或數組,並呈現在swift 3的表格視圖?
這裏是實現我的tableview
override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return object.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return object.property.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)
cell.textLabel?.text = property.[indexPath]
return cell
}
使用
arrayData
顯示你'tableView' –只是一個簡單的表格視圖的代碼。在1節中有4排顯示價值。謝謝你幫我。 –
然後在您的問題中添加該代碼以及您希望使用TableCell顯示哪些信息? –