I want to create a set of new NSDictionaries with different names dependant upon input data. Is this possible? E.g.
for (int i = 0; i < [holidayDestination length]; i++) { NSMutableDictionary *[NSString stringWithFormat:@"holidayDestination%d", i] = [[NSMutableDictionary alloc] init]; // Other code here... }
Thanks in advance.