I am creating an IPOD App and I have an NSDictionary that I have created from a JSON feed. I am trying to convert this to an NSMutableArray. I know I need to loop through the dictionary and write the keys and values to the array but I am having problems with the code. This is what to accomplish this.
//// Get the JSON data from the website NSError* error; NSDictionary* json = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
////// convert the dictionary to an NSMutableArray
// create an empty array of size equal to the number of json records
NSMutableArray *users = [[NSMutableArray alloc] initWithCapacity:1];
// Begin filling the array
NSInteger dCount = [json count];
for(int i=0; i < dCount; i++)
{
User *user = [[User alloc] init];
user.emailAddress = [json objectForKey: @"emailAddress"];
user.password = [json objectForKey: @"password"];
user.password = [json objectForKey: @"password"];
[users addObject:user];
NSLog(@"This is record: %@", i);
}
Thanks in advance.