Possible Duplicate:
iPhone/iOS JSON parsing tutorial
I'm trying to parse the following JSON information in my IOS 5 app;
[
{
"name":"Aranmore",
"pressures":[
"1019.000"
],
"temps":[
"8.600"
],
"waterLevels":[
"0.726"
],
"dates":[
"01/12/2012 21:00:00"
]
},
{
"name":......
}
I can get the names to populate the table view from the array, when the user selects the cell I want the additional information associated with the name to populate labels in another view.
Any suggestions?