[Solved] Objective C – How to store NSMutableArray inside of NSMutableDictionary

[ad_1]

NSMutableDictionary *mdictionary = [NSMutableDictionary dictionary];
NSMutableArray *marray = [NSMutableArray array];

[mdictionary setObject:marray forKey:@"key"];
[mdictionary removeObjectForKey:@"key"];

[ad_2]

solved Objective C – How to store NSMutableArray inside of NSMutableDictionary