I have an existing NSDictionary that has:
{ \"charts_count\" = 2; \"created_at\" = \"2010-04-12T16:37:32Z\"; exchange = NASDAQ; \"followers_c
Use -mutableCopy.
-mutableCopy
NSDictionary *d; NSMutableDictionary *m = [d mutableCopy];
Note that -mutableCopy returns id (Any in Swift) so you will want to assign / cast to the right type. It creates a shallow copy of the original dictionary.
id
Any