NSMutableDictionary is adding quotes to keys and values - why?
- by TimD
I'm trying to add some additional key/value pairs to an NSMutableDictionary, using:
Tag *tag1 = [results1 objectAtIndex:0];
[resultsDict setObject:[tag1 retrieveTextUpToDepth:1] forKey:@"image_url"];
Tag *tag2 = [results2 objectAtIndex:0];
[resultsDict setValue:[tag2 retrieveTextUpToDepth:1] forKey:@"majority"];
This adds the k/v pairs with no…