I have a for loop that goes through a series of dictionaries in an array.
How can I consolidate all the dictionaries entries as it goes through the for loop into one NSMutableDictionary
?
I tried addEntriesFromDictionary
, but its not working. Thanks for your help.
for (int i=0; i<sections.count; i++){
formElements = [[sections objectAtIndex:i]objectForKey:@"Dictionary"];
}