I have a problem with fetching data from Json response.
Here is an example data structure :
(
{
AT = \"\";
DId = 0;
Use JSONKit(https://github.com/johnezang/JSONKit):
NSString *yourJSONString = ...
NSArray *responseArray = [yourJSONString objectFromJSONString];
for(NSDictionary *responseDictionary in responseArray)
{
NSString *atString = [responseDictionary objectForKey:@"AT"];
...
NSArray *pdCatListArray = [responseDictionary objectForKey:@"PdCatList"];
...here you can get all values you want,if you want to get more details in PdCatList,use for in pdCatListArray ,you can do what you want.
}