I have an NSMutableDictionary , each element of which is a different dictionary. How can I copy its contents to another NSMutableDictionary ? I tried using:
firstDictionary = [NSMutableDictionary dictionaryWithDictionary:secondDictionary];
However, not sure if this is the best way to do this.
objective-c iphone nsmutabledictionary
Nsexplorer
source share