I wanted to know how (if it is possible) to create an NSDictionary that holds an NSArray for every key.
Something like that:
@”FirstKey” – [0], [1], [2], [3]
@”SecondKey” – [0], [1], [2], [3]
@”ThirdKey” – [0], [1], [2], [3]
@”FourthKey” – [0], [1], [2], [3]
Hope you got the idea, thanks ahead!
You can add
NSArrayinstances (or any other collection) as values of anNSDictionary:Alternatively, if you don’t have too many keys/values: