gpt4 book ai didi

iOS - 在 Swift 中使用 NSJSONSerialization 解析 JSON 字典

转载 作者:可可西里 更新时间:2023-11-01 01:38:03 26 4
gpt4 key购买 nike

我正在使用我的 REST Web 服务来获取我想要的 JSON 数据,这按预期工作并打印:

 [{
"name": "Event1",
"genre": "Party",
"subtitle": "subtitle1",
"startDate": "2015-10-10",
"location": "Anywhere"
},
{
"name": "Event2",
"genre": "Party",
"subtitle": "subtitle2",
"startDate": "2015-10-10",
"location": "Anywhere"
}]

所以这似乎是一个包含 2 个元素的数组,它们是字典。

然后我尝试使用 NSJSONSerialization 解析 JSON。

let data = str.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)

do {
let json = try NSJSONSerialization.JSONObjectWithData(data!, options: []) as! [String: AnyObject]

if let name = json["name"] as? [String]{
print(name)
}
} catch let error as NSError {
print("Failed to load: \(error.localizedDescription)")
}

我确实遇到了这个错误:

Could not cast value of type '__NSCFArray' (0x1096c1ae0) to 'NSDictionary' (0x1096c1d60).

这对我来说似乎很清楚,但我只是不知道如何解决它。

我的目标是从我自己的类(class)创建“事件”对象。

最佳答案

反序列化的结果将是一个数组:

let data = str.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)

do {
let dataArray = try NSJSONSerialization.JSONObjectWithData(data!, options: []) as! NSArray

for event in dataArray {
print(event)
}

} catch let error as NSError {
print("Failed to load: \(error.localizedDescription)")
}

关于iOS - 在 Swift 中使用 NSJSONSerialization 解析 JSON 字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33224702/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com