Tagged Questions

A member of Apple's Objective-C framework Cocoa. NSDictionary objects manage associations of keys and values.

learn more… | top users | synonyms

60
votes
3answers
15k views

Objective-C: What's the Difference between objectForKey and valueForKey?

What is the difference between objectForKey and valueForKey? I looked both up in the documentation and they seemed the same to me.
30
votes
5answers
14k views

How to check if an NSDictionary or NSMutableDictionary contains a key?

I need to check if an dict has a key or not. How?
26
votes
6answers
19k views

for each loop in objective c for accessing NSMutable dictionary

I am finding some difficulty in accessing mutable dictionary keys and values in Objective-C. Suppose I have this: NSMutableDictionary *xyz=[[NSMutableDictionary alloc] init]; I can set keys and ...
15
votes
4answers
9k views

Which method of checking to see if a NSDictionary contains a particular key is faster?

I can test for the presence of a key in an NSDictionary in two ways: BOOL containsKey = [[dictionary allKeys] containsObject:foo]; BOOL containsKey = ([dictionary objectForKey:foo] != nil); which ...
13
votes
3answers
560 views

Why doesn’t [NSDictionary allKeys] return a set?

Is there a reason for NSDictionary to return its keys as NSArray instead of NSSet? The documentation already states that the order of the keys in the array is undefined, it would sound logical to use ...
13
votes
1answer
5k views

NSDictionary - Need to check whether dictionary contains key-value pair or not

I just need to ask something as follow. Suppose I am having a dictionary. NSMutableDictionary *xyz=[[NSMutableDictionary alloc] init]; [xyz setValue:@"sagar" forKey:@"s"]; [xyz setValue:@"amit" ...
10
votes
2answers
8k views

Convert NSArray to NSDictionary

How can I convert an NSArray to an NSDictionary, using an int field of the array's objects as key for the NSDictionary?
9
votes
3answers
5k views

Best way to sort an NSArray of NSDictionary objects?

I'm struggling with trying to sort an array of dictionaries. My dictionaries have a couple of values of interest, price, popularity etc. Any suggestions?
6
votes
1answer
675 views

Casting a CFDictionaryRef to NSDictionary?

I have the code (stripped down): CFDictionaryRef *currentListingRef; //declare currentListingRef here NSDictionary *currentListing; currentListing = (NSDictionary *) currentListingRef; And then ...
6
votes
3answers
840 views

When is NSCopying needed?

I know it's needed if your object will be used as a key in an NSDictionary. Are there any other times like this that NSCopying is required? If I think I don't need my model objects to conform to ...
6
votes
2answers
4k views

writing NSDictionary to plist in my app bundle

I'm trying to write an NSDictionary to a plist but when I open the plist no data has been written to it. From the log my path looks correct and my code is pretty standard. Any ideas? NSArray *keys = ...
6
votes
2answers
871 views

Cocoa's NSDictionary: why are keys copied?

All objects used as keys in NS(Mutable)Dictionaries must support the NSCopying protocol, and those objects are copied when they're used in the dictionary. I frequently want to use heavier weight ...
5
votes
2answers
3k views

Check key exists in NSDictionary

how can I check if this exists?: [[dataArray objectAtIndex:indexPathSet.row] valueForKey:@"SetEntries"] I want to know whether this key exists or not. How can I do that? Thank you very much :) ...
5
votes
1answer
420 views

Can I put an ObjectiveC @selector in a NSDictionary?

[actionMap setObject:@selector(actionNavPop) forKey:@"navPop"]; This doesn't work. NSDictionary can only hold objects, and a SEL type is not an object. For number types you can do [NSNumber ...
5
votes
3answers
19k views

How can we store into an NSDictionary? What is the difference between NSDictionary and NSMutableDictionary?

I am developing an application in which i want to use an NSDictionary. Can anyone please send me a sample code explaining the procedure how to use an NSDictionary to store Data with a perfect example? ...
5
votes
2answers
17k views

Plist Array to NSDictionary

I have a plist: <plist version="1.0"> <array> <dict> <key>name</key> <string>Alabama</string> <key>abreviation</key> ...
5
votes
6answers
3k views

If NSDictionary is good for paired values, what is good for triple values?

NSDictionary is good for key-value pairs, by what data structure is best for when you have three values? Is is best to create a class for those 3 values, and then let each object in an array contain ...
4
votes
2answers
62 views

Traversing NSDictionary in Objective-C

Is there an easy way for me to pull out a particular value from an NSDictionary, without calling objectForKey for each level I want to go down? For example: { response = { data = { ...
4
votes
2answers
127 views

Is objectForKey slow for big NSDictionary?

Assume we have very big NSDictionary, when we want to call the objectForKey method, will it make lots of operations in core to get value? Or will it point to value in the memory directly? How does ...
4
votes
3answers
1k views

How does JSONRepresentation of NSDictionary class works?

some time ago I was figuring out JSON handling in Objective-C (iPhone) and I found one confusing thing there. This call puzzles me: NSString* jsonString = [jsonDict JSONRepresentation]; In fact ...
4
votes
3answers
948 views

Deep combine NSDictionaries

I need to merge two NSDictionarys into one provided that if there are dictionaries within the dictionaries, they are also merged. More or less like jQuery's extend function.
4
votes
3answers
629 views

Is there a reverse “setValuesForKeysWithDictionary” - a makeDictionaryWithObjectProperties?

I parse some JSON from a web service, this gives me an NSDictionary, I use this dictionary to populated properties on a valueEntity of type NSObject by [myObject ...
4
votes
1answer
734 views

How to store an NSArray in an NSDictionary?

I'm trying to teach myself but am struggling with how to store something like an NSArray inside an NSDictionary. Let's say hypothetically you had a NSDictionary for recipes: Let's say the ...
4
votes
1answer
373 views

UIView as dictionary key?

I want to have a NSDictionary that maps from UIViews to something else. However, since UIViews do not implement the NSCopying protocol, I can't use them directly as dictionary keys.
4
votes
3answers
2k views

NSDictionary, NSArray, NSSet and efficiency

I've got a text file, with about 200,000 lines. Each line represents an object with multiple properties. I only search through one of the properties (the unique ID) of the objects. If the unique ID ...
4
votes
2answers
2k views

App crashes when I create a NSDictionary with integer as Object

Always when I try to set an integer as Object in a NSDictionary the program crashes without a message (nothing in the console). What is wrong in this code? : NSString *string = @"foo"; int number = ...
4
votes
4answers
6k views

How do I convert NSDictionary to NSData as a plist (without saving the dictionary)

Does anyone know how to convert a NSDictionary object into an NSData object as a plist without saving the dictionary first? I would like my iphone app to send an email with a plist containing my ...
4
votes
3answers
2k views

NSManagedObject as NSDictionary key?

In my app, I have a NSDictionary whose keys should be instances of a subclass of NSManagedObject. The problem, however, is that NSManagedObject does not implement the NSCopying protocol which means ...
4
votes
4answers
8k views

Create a dictionary property list programmatically

I want to programatically create a dictionary which feeds data to my UITableView but I'm having a hard time with it. I want to create a dictionary that resembles this property list (image) give or ...
4
votes
4answers
1k views

Instantiating Custom Class from NSDictionary

I have a feeling that this is stupid question, but I'll ask anyway... I have a collection of NSDictionary objects whose key/value pairs correspond to a custom class I've created, call it MyClass. Is ...
3
votes
1answer
67 views

Weak object in an NSDictionary?

I would like to store a zeroing weak reference to an object in a NSDictionary. This is for a reference to a parent NSDictionary, so I can crawl back up a large structure without searching. I can not ...
3
votes
4answers
686 views

How to use NSJSONSerialization

I have a JSON string (from PHP's json_encode() that looks like this: [{"id": "1", "name":"Aaa"}, {"id": "2", "name":"Bbb"}] I want to parse this into some sort of data structure for my iPhone app. ...
3
votes
1answer
114 views

iPhone - Sorting of NSMutableArray containing NSDictionary with 2 keys

Hihi all, I have an NSMutableArray containing various NSDictionary. In each of the NSDictionary, I have two key-value-pairs, eg: username and loginDate. I would need to sort all NSDictionary in this ...
3
votes
1answer
178 views

Using ASIHTTPRequest to POST nested params using a NSDictionary

Trying to post information for nested parameters to a rails app and having some trouble. #pragma mark - Begin Network Operations - (void)beginNetworkOperation { NSURL *requestURL = [NSURL ...
3
votes
1answer
105 views

Supporting KVO when using composition to extend NSMutableDictionary

I have an array of NSMutableDictionary objects which are displayed in a master–detail interface which has a few text fields and a bunch of check boxes. The controls are bound to the dictionary keys, ...
3
votes
3answers
123 views

Objective-C Find the most commonly used words in an NSString

I am trying to write a method: - (NSDictionary *)wordFrequencyFromString:(NSString *)string {} where the dictionary returned will have the words and how often they were used in the string provided. ...
3
votes
1answer
286 views

How can I convert an NSDictionary to an NSMutableDictionary?

I have an existing NSDictionary that has: { "charts_count" = 2; "created_at" = "2010-04-12T16:37:32Z"; exchange = NASDAQ; "followers_count" = 259; id = 8404; industry = ...
3
votes
1answer
326 views

Beautify NSLog of NSArray & NSDictionary

I'm dealing with deeply nested NSArray's and NSDictionary's and it's very time consuming to say the least. [data objectatindex:0] valueForKey:@"blah"] etc etc Does anyone know of a nice iOS category ...
3
votes
2answers
43 views

Help needed with json iphone

I m receiving data from the server. Now when i m deserializing it i m getting an array with key value. Now the first object of the array is my whole NSDictionary item from which i have to extract data ...
3
votes
1answer
63 views

App crashes when accessing NSDictionary's values but not when accessing its keys?

I have an NSDictionary object called "myData," and I'm trying to access it from the UITableViewDelegate method "didSelectRowAtIndexPath." I can perform these operations fine: if(myData == nil) { /* ...
3
votes
2answers
280 views

Saving enum values into a dictionary

How does one save an enum value to a dictionary? When I try the following enum someEnum { field0 = 0, field1 = 1, field2 = 2, }; enum someEnum someEnumObject; and I try to save it to ...
3
votes
3answers
419 views

Foundation Objective-c: Dictionary with array; dict with dict

Suppose I have a NSDictionary with two sub collections of a NSArray and a NSDictionary: NSMutableDictionary *mkDict(void){ NSMutableDictionary *dict=[NSMutableDictionary dictionary]; ...
3
votes
2answers
94 views

How to implement Perl hashes in objective-c?

I have been looking through many sites and tutorials, and the Apple documentation, and still haven't found a solution: it seems to me that NSArray, NSDictionary and their mutable counterparts are not ...
3
votes
2answers
1k views

how to do true deep copy for NSArray and NSDictionary with have nested arrays/dictionary?

Question: Is there a way to use existing objective-c methods to do a full deep copy of a NSDictionary or NSArray, that themselves have nested dictionaries or arrays within them? That is I have read ...
3
votes
3answers
472 views

How to add userInfo to a UIAlertView?

I would like to know how to add a userInfo or any NSDictionnary to a UIAlertView ? Thank you. PS: Sorry for my bad English, I'm French.
3
votes
2answers
491 views

Byte size of an NSDictionary

This may sound like a completely stupid question, but how can I get the size in bytes of an NSDictionary? Can I convert it to NSData, and then get the length of that? Help!
3
votes
5answers
387 views

iPhone - numberOfRowsInSection error with array count

I am getting the following error if the @"Comments" array is 0 and the other two are 1 or greater. *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSMutableArray ...
3
votes
2answers
411 views

NSDictionary with NSDates as keys

Is it possible to have an NSdictionary where the keys are NSDates and also have it writeable/archiveable to disk?
3
votes
1answer
2k views

dictionaryWithContentsOfFile returning nil from my property list file

I'm learning how to use plist files for storing data in my iPhone app. I've been reading a bunch of the questions about plist and dictionaryWithContentsOfFile on this site, but can't see what I'm ...
3
votes
2answers
1k views

Restoring a BOOL inside an NSDictionary from a plist file

I have a plist file which contains an array of dictionaries. Here is one of them: Fred Dictionary Name Fred isMale [box is checked] So now I am initializing my Person object with the ...

1 2 3 4 5 18