Tagged Questions
0
votes
2answers
26 views
Is it possible to set a NSMutableDictionary key under a key?
I set a value with a key like so:
[mutableDict setObject:@"Object to set" forKey:@"KeyOne"];
This works, but now I would like to add a value under "Key one", like this:
[mutableDict ...
0
votes
2answers
73 views
How get all values from NSMutableDictionary for key?
How I get all values from NSMutableDictionary, but only for key @"Column1" or how get index row for key?
I try [dict objectForKey: @"Column1"]; , but I get only last value for key (user3).
example ...
0
votes
2answers
41 views
NSDictionary query
I'm new to iOS 6 and just wanted to post a question regarding the use of NSDictionary or MutuableDictionary.
I'm used to the Android method ShardPreferences where I can write data in key/value format ...
1
vote
0answers
112 views
NSDictionary get object
I got this NSMutableDictionary that contains a object and a key.
The key is: TemplateID and the Object is a number.
My problem is i can't get the Object out, without the key.
Can anyone help?
...
0
votes
1answer
406 views
How to add new keys into an NSMutableDictionary?
I have a plist which is to be populated with arrays. But I need a header for these arrays and the only kind I know of are keys. I've searched this site but I cannot find the answer I am looking for. ...
3
votes
1answer
2k views
Problem when using UIColor RGB black as a key in an NSMutableDictionary
I can set UIColor objects as keys in an NSMutableDictionary all day long and everything is fine and happy...
For instance:
[myDict setObject:foo forKey:[UIColor redColor]];
That works just ...
0
votes
2answers
2k views
How to insert a new key with value in dictionary
I want to insert a key with a corresponding value in an existing dictionary...
I am able to set values for existing keys in the dictionary, but I am not able to add a new key value...
Any help would ...
1
vote
3answers
2k views
Using non-copyable object as key for NSMutableDictionary?
I tried to figure out this code referencing: http://stackoverflow.com/questions/1187112/cocoa-dictionary-with-enum-keys
+ (NSValue*)valueWithReference:(id)target
{
return [NSValue ...
1
vote
1answer
610 views
How do I access the keys of a NSMutableDictionary?
NSMutableDictionary *bookmarks = [NSMutableDictionary dictionary];
[bookmarks setObject:[NSURL URLWithString:(NSString *) @"http://stanford.edu"] forKey:
@"Stanford University"];
[bookmarks ...