Domanda

a silly question: How do i fit multiple dictionaries together in one or add one to an other? i tried to initialize my dictionary with two other.. it didn't work.

 dic1 = [[NSMutableDictionary alloc] initWithDictionary:dic2, dic3];

thank you

È stato utile?

Soluzione

You want to use the addEntriesFromDictionary:dic3 method on NSMutableDictionary:

dic1 = [[NSMutableDictionary alloc] initWithDictionary:dic2];
[dic1 addEntriesFromDictionary:dic3];
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top