Frage

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

War es hilfreich?

Lösung

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

dic1 = [[NSMutableDictionary alloc] initWithDictionary:dic2];
[dic1 addEntriesFromDictionary:dic3];
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top