I am developing one application.In that i use the json.Json gives the output and that output is stored in one dictionary like
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
[responseData release];
NSDictionary *results = [responseString JSONValue];
So my problem is how to separate the data from results.I want to print the only city name.so please tell me how to extract the data from dictionary.
you need to see the response and by using
objectForKey:(method in NSDictionary) you can find what ever you want. (pick data by their key).