NSMutableDictionary is the mutable version of NSDictionary.

learn more… | top users | synonyms

2
votes
3answers
8k 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
3answers
3k views

Subclassing NSMutableDictionary

I am trying to implement a subclass of NSMutableDictionary that returns nil instead of throwing a NSUndefinedKeyException when the key is not present in the Dictionary. However when I try to add ...
2
votes
3answers
290 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
2answers
85 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
3answers
2k 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
4answers
567 views

objective c when to use NSDictionary instead of NSArray [duplicate]

I'm in a dilemma in terms of which of the two I should use. I will be retrieving a group of data via a restful API (returns json) and I'm not sure how I should store them before I display it on my UI ...
2
votes
4answers
6k views

how to write NSMutableDictionary into Plist

can any one help me with this how to write a NSMutableDictionary into a plist.... thanks in advance..
2
votes
3answers
403 views

adding entries to NSMutableDictionary

I'm having trouble with adding dictionary's to a nsmutabledictionary. Can anyone see what I'm doing wrong? @interface viewMap : UIViewController<MKMapViewDelegate> { NSMutableDictionary ...
2
votes
2answers
3k views

How to sort NSMutableArray of NSMutableDictionary?

I have NSMutableArray of NSMutableDictionary(NSString objects). One of NSString object is actually a date, and i need to sort NSMutableArray based on that date and I don't want it to sort dates as ...
2
votes
2answers
11k views

How do I create an Objective-C dictionary of arrays without reusing the same array?

Long time Windows developer, 1st time Objective-C/iPhone developer wants to create a dictionary of arrays that can be displayed in a plain TableView with alphabetic sections. The source for this ...
2
votes
3answers
75 views

Is it bad practice to return a mutable object when the return value is an immutable object?

If I have this method: + (NSDictionary *)dictionaryFromQueryString:(NSString *)queryString { NSMutableDictionary *this = [[NSMutableDictionary alloc] init]; NSArray *fields = [queryString ...
2
votes
1answer
145 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
2answers
6k views

Retrieving data from a NSDictionary

I am not quite sure I understand how to do the following. If I wanted to add e.g. an author and a title (key, value) to a dictionary. Fill that dictionary with data, then have another dictionary for ...
2
votes
2answers
533 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
431 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
4answers
4k views

getting string in NSMutableArray : Why it doesn't work?

I have the error -[NSCFString stringValue]: unrecognized selector sent to instance 0x1578c when executing this code I don't understand what I'm doing wrong name is a NSString self.searchValues= ...
2
votes
2answers
5k 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 ...
2
votes
1answer
245 views

blocks in nsdictionary?

So I'm storing block actions into a nsmutabledictionary and then recalling them when a response comes back on a websocket. This turns async request into a block syntax. Here's the stripped down code: ...
2
votes
2answers
220 views

nearby venue to iphone into simple array

Im really having a hard time figuring this out. Ive read a bunch of PDFS and stackoverflow questions on this but I have never used and API and can't quiet get it. I am trying to get my longitude and ...
2
votes
2answers
151 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
1answer
2k views

view contents of NSMutableDictionary

How to view the contents of NSMutableDictionary?
2
votes
3answers
108 views

NSDictionary and NSArray

I have arrays of names and images like below NSArray *names = [[NSArray alloc] initWithObjects:@"naveen", @"kumar",nil]; NSArray *images = [[NSArray alloc] initWithObjects:[UIImage ...
2
votes
2answers
373 views

concatenate all values in NSMutableDictionary cast to int, NSInteger and NSString

so I have a couple NSMutableDictionarys and each key/valeu pair for a specific dictionary hold either a string or integer value. I would like to know if there is a way to iterate through the ...
2
votes
2answers
1k views

is there any ordered dictionary collection in ios5?

Now my issue was, i am using the table , data source from the dictionary... that dictionary contain more than one 20 element in it.... i need to search the element present in the dictionary and i ...
2
votes
3answers
455 views

Set Value NSMutableDictionary?

I am having trouble saving an NSMutableDictionary. I am trying to save it to NSUserDefaults, then load and change a blue, then save it again. So I initially make it like so: NSMutableDictionary *d = ...
2
votes
5answers
706 views

Is there a clean way to use pointers (ids) as keys in an NSMutableDictionary?

I'm using NSMutableDictionary to store what is effectively a descriptor for certain classes, because I'd rather not waste the memory of adding the descriptor to every instance of classes, since only a ...
2
votes
4answers
116 views

Sorting of NSMutableDictionary

Confusing !!! I have one NSMutableDictionary called tempDict, having keys Freight, Fuel , Discount (and many more) with relevant values. I am generating two different NSMutableArrays called ...
2
votes
1answer
400 views

Xcode - Most Streamlined way of saving a lot of integers to a file

i am currently saving 30 integers to a file by creating a NSMutableDictionary and then using the NSKeyedArchiver to save it. @interface: NSInteger highScoreE; NSInteger highScoreM; NSInteger ...
2
votes
3answers
1k 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
1answer
487 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
62 views

Pull out valueForKeys of an inner NSMutableDictionary iOS

Ok I get and store a Json feed to an array called jsonArray. I then loop over the jsonArray pulling out the array keys and storing them as strings. I then add those strings to an inner dictionary ...
2
votes
2answers
282 views

what's the difference between methods dictionary and dictionaryWithCapacity?

what's the difference betweenn [NSMutableDictionary dictionary] and [NSMutableDictionary dictionaryWithCapacity:10] which one is better?
2
votes
3answers
771 views

NSMutableDictionary instance variable not retaining key values outside of loop

sorry if this question has already come up but I couldn't find anything that addressed the specific problem I'm having here. I'm working in objective-c on iOS and I have declared an ...
2
votes
3answers
429 views

looping array and saving objects in NSMutableDictionary does not work?? logical problem?

It seems like i have a logical problem in this loop. I am trying to: Looping myKeys (from a dict) to find selected players Setting three BOOL parameters for the selected players (YES or NO) in an ...
2
votes
1answer
1k views

How to change a value inside a dictionary in an array that's inside a dictionary?

I have a plist dictionary with several arrays where each have different number of items. These items are dictionaries too. So basically it looks like this: Root dictionary names array places array ...
2
votes
1answer
355 views

NSMutableDictionary with capacity

What happens when you try to add to an NSMutableDictionary once it has already reached its capacity limit of objects? Does this bump one out or is this going to throw an exception? Also is there any ...
2
votes
2answers
50 views

Looping NSMutableDictionary

I have some table columns in database say: office, hallName and floor. I have some set of values in this table. I need to fetch these values and view it on the tableview. So i need to use ...
2
votes
1answer
75 views

How do I implement a simple local cache of key-value pairs in a class method?

I have a class in my project that queries a private server and returns a human readable username on being given an alphanumeric user ID. I implemented this as a class method. I don’t want to query ...
2
votes
1answer
82 views

Creating UITableCell cells in order from NSMutableDictionary

I have a NSMutableDictionary created from a JSON query, running the json query in a browser has the output ordered alphabetically as i need it, and displaying this in the correct order using NSLOG ...
2
votes
1answer
217 views

Create and populate on the fly a nested NSMutatbleDictionary from tree like structure

I am having a hard time trying to create and populate on the fly an NSMutableDictionary from a tree like structure. Let's say you have a node where node.attributes retrieves an NSArray of key/value ...
2
votes
2answers
647 views

encodeWithCoder is not called in derived class of the NSMutableDictionary

Basically I am using some open source code called OrderedDictionary that is derived from NSMutableDictionary. Then I want to save the ordered dictionary data to NSUserDefaults by adding encode and ...
2
votes
2answers
2k views

Using a nested NSMutableDictionary

simple question, I need to structure data in the following format: UserID: 1 { Name = Bob Surname = Hope } 2 { ... I can use an NSMutableDictionary to add a ...
2
votes
3answers
386 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
468 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
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
1answer
82 views

NSMutableArray and NSMutableDictionary in a TableView

I have a problem with using an NSMutableArray and NSMutableDictionary. I've created a quiz that when it stops, it should display the current score and date in a tableview. It should then display ...
2
votes
0answers
428 views

NSMutableDictionary with non-copyable UIView keys (using CFDictionary) crashes on iOS SDK 6, yet OK on 5.1

So I was using TLMutableDictionaryNoncopiedKeys Category for NSMutableDictionary found here that allows using non-copyable objects as keys for dictionary (I need object-to-object mapping). All was ...
2
votes
1answer
157 views

how to differentiate parent and child tag while xml parsing in iphone

I am trying to get all tags values from xml and want to store them in a NSMutableDictionary. I am having a problem to store the values in the NSMutableDictionary, I have a NSMutableArray with a ...
2
votes
4answers
160 views

Creating dynamic NSMutableDictionary query with multiple values

I'm working on a project and I want to be able to handle some template type messages. The template would contain something like: "{{user1}} has just created an account" I then have a data map that ...
2
votes
3answers
1k views

Searching for a value in an unknown NSMutableArray depth

Ok, i kind of asked the wrong question so I've edited the original question. I'm storing Arrays within Arrays, as well as NSDictionaries. It's a utility kind of application and there is no set ...

1 2 3 4 5 13