为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 Swift 中优雅地处理 JSON

如何在 Swift 中优雅地处理 JSON

眼眸繁星 2019-05-31 14:02:46
如何在 Swift 中优雅地处理 JSON
查看完整描述

4 回答

?
凤凰求蛊

TA贡献1825条经验 获得超4个赞

[
{
......
"text": "just another test",
......
"user": {
"name": "OAuth Dancer",
"favourites_count": 7,
"entities": {
"url": {
"urls": [
{
"expanded_url": null,
"url": "",
"indices": [
0,
26
],
"display_url": null
}
]
}
......
},
"in_reply_to_screen_name": null,
},
......]


 




查看完整回答
反对 回复 2019-06-01
?
侃侃尔雅

TA贡献1801条经验 获得超15个赞

let jsonObject : AnyObject! = NSJSONSerialization.JSONObjectWithData(dataFromTwitter, options: NSJSONReadingOptions.MutableContainers, error: nil)
if let statusesArray = jsonObject as? NSArray{
if let aStatus = statusesArray[0] as? NSDictionary{
if let user = aStatus["user"] as? NSDictionary{
if let userName = user["name"] as? NSDictionary{
//Finally We Got The Name

}
}
}
}



查看完整回答
反对 回复 2019-06-01
  • 4 回答
  • 0 关注
  • 729 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信