我在 iOS 应用程序中使用 Google api。响应是这样的:
{
"result":[]
}
{
"result":[
{
"alternative":[
{
"transcript":"hello hello",
"confidence":0.94471323
},
{
"transcript":"Hello-Hello"
},
{
"transcript":"hello jello"
},
{
"transcript":"hello hello hello"
},
{
"transcript":"hello hello."
}
],
"final":true
}
],
"result_index":0
}
我正在获取数据,但如何解析此响应?
我将其转换为NSString
. 但我需要有效的结果NSArray
。NSDictionary
NSString *responseString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
这给了我字符串结果,但如何将其转换为NSDictionary
?