我是 iPhone 编程的新手。谁能告诉如何解析 iPhone 中的 JSON 字符串?我在我的应用程序中使用 JSON 解析。这是我的 JSON 数据:JSON 格式是 dz。
{
"firstName": "John",
"lastName": "Smith",
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021"
}
}
我该怎么做这个解析?