ios - Add Object to an NSMutableArray that is an element of an NSDictionary -


in code below, declare nsdictionary , fill empty nsmutablearrays designated numeric keys:

nsdictionary *result = [[nsdictionary alloc] init]; for(float = 0; < 120; += 0.25){     [result setvalue:[[nsmutablearray alloc] init] forkey:[nsstring stringwithformat:@"%.2f", i]]; } 

now if have object want add 1 of arrays , key of array want add (for example if want add string array key 4.25), how add object array?

[result[@"4.25"] addobject: @"astring"]; 

note code won't work written. need create dictionary mutable if going add key/value pairs after it's created.


Comments

Popular posts from this blog

html - Styling progress bar with inline style -

java - Oracle Sql developer error: could not install some modules -

How to use autoclose brackets in Jupyter notebook? -