Tagged Questions

NSMutableDictionary is the mutable version of NSDictionary.

learn more… | top users | synonyms

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 ...
21
votes
3answers
862 views

NSCoding of NSMutableDictionaries containing custom objects

I was trying to serialize a SearchEntity object(custom object) containing an NSMutableDictionary containing a set of type CategoryEntity(custom object). 1 SearchEntity containing: 1 ...
18
votes
3answers
9k views

Where's the difference between setObject:forKey: and setValue:forKey: in NSMutableDictionary?

When looking at the documentation, I hardly see any big difference. Both "value" and "object" are of type id, so can be any object. Key is once a string, and in the other case an id. One of them seems ...
10
votes
3answers
2k views

Observing NSMutableDictionary changes

Is it possible to observe (subscribe to) changes to values stored under different keys in an NSMutableDictionary? In my case the keys would already exist when the subscription is initiated, but the ...
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 ...
6
votes
3answers
12k views

How to addObject of NSMutableDictionary to NSMutableArray in a loop

I'm having difficulty to add a data structure to an array to create an array of dictionaries from a loop. I just knew that addObject in NSMutableArray only add pointer to it. I would like to know how ...
5
votes
1answer
291 views

NSMutableDictionary addition and removal KVO

I have a quick question regarding KVO. I understand that for a NSArray if observing additions is desired you can do the following. NSIndexSet* set = [NSIndexSet indexSetWithIndex:[someIndex ...
5
votes
4answers
922 views

NSMutableDictionary with UIButton* as keys - iPhone development

I'm new to iPhone development and I have a question that may have a very simple answer. I am trying to add buttons to a view and these buttons are associated with a custom class that I defined. When I ...
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? ...
4
votes
2answers
15k views

NSMutable Dictionary adding objects

Is there a more efficient way to add objects to an NSMutable Dictionary than simple iteration? Example: // Create the dictionary NSMutableDictionary *myMutableDictionary = [NSMutableDictionary ...
3
votes
1answer
283 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
3answers
305 views

Case Insensitive Search in NSMutableDictionary

HI, I have a NSMutableDicitionary contains both lowercase and uppercase keys. So currently i don't know how to find the key in the dictionary irrespective key using objective c.
3
votes
4answers
439 views

NSMutableDictionary causing EXC_BAD_ACCESS

I'm trying to fix an EXC_BAD_ACCESS error that is being thrown when i access a NSMutableDictionary in tableView:cellForRowAtIndexPath:indexPath. Right now it works when I fill ridesDict with a method ...
3
votes
2answers
876 views

Do I need to initialize an iOS empty nested array that's part of a plist import?

the code below is working, but I want to make sure it's correct. I'm nervous about having an empty Array inside my dictionary that I create from the plist, since typically it seems that if you don't, ...
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
2answers
455 views

How Sorting array which contains Dictionary?

I have an array which contains a dictionary in it; so how can I sort the array according to dictionary key values?
3
votes
1answer
768 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 ...
3
votes
1answer
629 views

ShareKit - How to access the Twitter username

Currently I have set up my application to take advantage of the XAuth implementation of Twitter services via ShareKit. Those that are aware of ShareKit and have implemented it into your own ...
3
votes
2answers
947 views

Remove all objects after index 20 in NSMutableDictionary?

I have an NSMutableDictionary that possibly contains more than twenty objects. If it contains more than 20 objects, how should I remove the oldest entries until there is only 20 left? For example, ...
3
votes
2answers
2k views

looping through an NSMutableDictionary

How do I loop through all objects in a NSMutableDictionary regardless of the keys?
3
votes
2answers
469 views

NSArrayController not working with NSMutableDictionary for NSTableView

I am trying to display content in NSTableView using NSMutableArrayController of NSMutableDictionary records. I followed steps written below: In application delegate class, I created an ...
3
votes
2answers
4k views

How to get the key for a given object from an NSMutableDictionary?

I have an object which is in an big NSMutableDictionary, and need to find out which key this has. So I want to look up that "table" from both columns. Not only with keys, but also with objects (to get ...
3
votes
3answers
2k views

NSMutableDictionary thread safety

I have a question on thread safety while using NSMutableDictionary Main thread is reading data from NSMutableDictionary where key is Nsstring value is UIImage Async thread is writing data to above ...
2
votes
3answers
49 views

Searching for a value in an unknown NSMutableArray depth

I'm storing Arrays within Arrays, as well as NSDictionaries. It's a utility kind of application and there is no set structure, the user can enter nested information as much as they require. Ideally I ...
2
votes
3answers
64 views

NSMutableDictionary for huge dataset of floats

I've got some code to convert a large (many gigabytes) XML file into another format. Among other things, I need to store one or two gigabytes of floats in a hash table (two floats for each entry), ...
2
votes
3answers
36 views

Problems with adding objects to NSMutableDictionary

I am making an iPhone app and I am loading information from a server. I send NSURLRequest to the server and get back a NSString value. This is working fine and the value I am getting back is the ...
2
votes
1answer
117 views

addObject to NSMutableArray in NSMutableArray

I have my UITableView data organized such that the sections of the table are the array elements of a NSMutableArray. Each element itself is a NSMutablearray of NSMutableDictionary, representing the ...
2
votes
2answers
105 views

How to make a if statement with NSNull in objective-c

I am develop a iPhone application, in which i need to use JSON to receive data from server. In the iPhone side, I convert the data into NSMutableDictionary. However, there is a date type data are ...
2
votes
2answers
42 views

In what order will for(NSString * ID in someNSDictionary) run?

for(NSString * ID in someNSMutableDictionary) { //do something } Now, will ID show up in the order they are added to someNSMutableDictionary?
2
votes
2answers
82 views

Objective-C: Why use non-NSMutable objects?

Why should someone ever use the non-NSMutable equivalents of the data structures in Objective-C? When it's a situation when you need a const object that should not be modified? Does using ...
2
votes
3answers
274 views

sorting dictionary by child key

I understand how to display a dictionaries sorted content by means of obtaining allKeys into an NSMutableArray, sorting the array and using it as an index into the dictionary, but.... What if I want ...
2
votes
3answers
136 views

Looping through an dictionary; why do I not get the keys alphabetically?

I am writing an iPhone app using S7Graphview and I have saved some dates and results to a .plist as keys and values in a dictionary, both as strings. My plist looks like this: <dict> ...
2
votes
3answers
180 views

Obj C: Grouping strings into NSMutableDictionary

I have an NSArray that contains a bunch of strings. Each string lists a parent and child type, such as: Tool: Saw Fruit: Apple Fruit: Orange Tree: Maple Fruit: Banana Tree: Oak Tool: Hammer Tree: ...
2
votes
1answer
101 views

Can we use NSMutable objects as members of a non-NSMutable class

Suppose we have simple NSDictionary class, can one of its objects be an NSMutableDictionary object? When we edit a value within the NSMutableDictionary object, we are only editing values of the object ...
2
votes
3answers
628 views

iPhone dev, NSDictionary how to retain full Dict?

I have a problem with retaining data in a nested NSDictionary. Or is it something with NSMutableDictionary that will make this work? Take a look, I will try to explain as good as possible. My .h file ...
2
votes
3answers
934 views

iPhone: Memory Leak in Custom Class and NSMutableDictionary

I've spent a couple of days trying to find out what's going on. I have read loads of Memory Management documentation and I am sick to death of hearing "for every alloc you need a release" - I know ...
2
votes
1answer
202 views

Adding data to an NSDictionary… SRSLY? Isn't there a quicker way?

I'm from a Flash ActionScript background. Where I'm from, I can set a dictionary-like object like this: var data:Object = {startPoint:5, endPoint:12}; So coming to Objective-C, I was surprised to ...
2
votes
2answers
1k views

NSMutableDictionary with single key holding many values in Objective-C programming

Please tel me how to have many values for the same key in NSMutableDictionary? because when i use the below approach , the values are being replaces with the recent one In my case: [dictionary ...
2
votes
2answers
334 views

Should I release array returned from [NSMutableDictionary ValueForKey: ]

I have a NSMutableDictionary with the key being the first alphabet of the name of an object. The view is something like the 'Contacts' tab on iphone. Additionally user can select individual objects in ...
2
votes
2answers
2k views

NSMutableDictionary is being treated as an NSDictionary

I have a simple class with an NSMutableDictionary member variable. However, when I call setObject:forKey I get an error ('mutating method sent to immutable object'). The source of the problem is ...
2
votes
2answers
308 views

NSMutableDictionary in iPhone

After adding the key value pairs in NSMutableDictionary, when i retrive the key/values from it, will that retrived key/value be removed from NSMutableDictionary? or is it stil maintained in ...
2
votes
1answer
4k views

How to update NSMutableDictionary?

I have an NSMutableDictionary. NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:path]; I have to update an element in that dictionary. How i can do that ? Thanks ...
2
votes
3answers
2k views

What's the best way to store and retrieve multi-dimensional NSMutableArrays?

I'm storing a bunch of data in a .plist file (in the application documents folder), and it's structured like this: Dictionary { "description" = "String Value", "sections" = Array ( ...
2
votes
3answers
4k views

Best way to handle persistent Boolean in plist?

What's the best way to handle Boolean values that derive from a UISwitch setting, and are stored in an NSMutableDictionary that is saved to the user's directory as persistent settings? Specifically, ...
2
votes
3answers
2k views

How to clear a dictionary?

I'm currently doing the following to clear out an NSMutableDictionary [myDictionary release]; myDictionary = [[NSMutableDictionary alloc] init]; The release line doesn't actually release any ...
2
votes
3answers
5k views

NSMutable Array - objectAtIndex: index beyond bounds

I'm trying to look through a NSMutableDictionary loaded with an NSMutableArray and I'm messing it up, and I don't know how. I'm trying to load a larger plist of game questions, then delete them if ...
2
votes
2answers
6k views

NSDictionary setValue:

OK, this is driving me nuts -- please tell me I'm not losing my mind! I declare: NSMutableDictionary* generalSettingsDict; im my .h I init: generalSettingsDict = [[NSMutableDictionary alloc] ...
2
votes
2answers
4k views

NSMutableDictionary throws a doesNotRecognizeSelector to objectForKey?

I'm a total noob to iPhone programming, and I've run into an exception being thrown that I just can't wrap my head around. Background: The error is happening in a custom subview, and occurs ...
1
vote
0answers
29 views

FMDB stringForColumn Returning nil

I am looping through a FMDB result set, generated from a SQLite3 database, creating objects to use later. The data content is created by various users, using various text editors and encodings. A ...

1 2 3 4 5 7