If a JSON web service returns something like this (details of houses)
[
{
id:4,
price: 471,
location: "New York",
size: 3000
},
{
id:7,
price: 432,
location: "London",
size: 3200
},
{
id:22,
price: 528,
location: "Tokyo",
size: 2000
}
]
How would I iterate thru each house one-by-one? I'm using ASIHTTPRequest and the JSON parser: http://stig.github.com/json-framework/
I think I can get the dictionary like so:
NSString *theResponse = [request responseString];
NSDictionary *dictionary = [theResponse JSONValue];
.. but I'm unsure how to iterate thru each house.
{
id:4,
price: 471,
location: "New York",
size: 3000
},
{
id:7,
price: 432,
location: "London",
size: 3200
},
{
id:22,
price: 528,
location: "Tokyo",
size: 2000
}
This is array of dictionaries... you can create a Modal class of you House(attributed :id,price,location,size) and iterate it as follows...(considering you finally have above thing)..
NSArray *houses = [dictionary objectForKey:<youHaveNotProvideItInYourData>];
NSMutableArray *populatedHouseArray = [[NSMutableArray alloc]init];
for(int i=0;i<[houses count];i++)
{
NSDictionary *tempDictionary = [houses objectAtIndex:i];
House *tempHouse = [[House alloc]init];
if([tempDictionary objectForKey:@"id"]!=nil
{
tempHouse.id = [tempDictionary objectForKey:@"id"];
}
//and so on for other keys
[populatedHouseArray addObject:tempHouse];
[tempHouse release];
}
Thanks,
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With