NSMutableDictionary is the mutable version of NSDictionary.
36
votes
3answers
50k 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?
...
58
votes
3answers
21k 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 ...
8
votes
3answers
5k 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 ...
9
votes
5answers
5k 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 ...
7
votes
4answers
15k views
Sort an NSMutableDictionary
I have an NSMutableDictionary that maps NSString to NSString (although the values are NSStrings, they are really just integers).
For example consider the following mappings,
"dog" --> "4"
"cat" ...
91
votes
6answers
64k 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 ...
14
votes
2answers
4k 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 ...
4
votes
3answers
1k views
NSMapTable and NSMutableDictionary differences
Is an NSMapTable the same as an NSMutableDictionary except for allowing keys to be pointers?
Does it differ in memory management?
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..
-1
votes
2answers
419 views
How to assign values from NSMutableDictionary to NSArray
I am doing JSON parsing and I want to show my parsed data in a UITableView.
For that, I am trying to assign parsed data from NSMutableDictionary to NSArray to show in the table view but the array ...
117
votes
7answers
49k 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?
6
votes
3answers
4k views
How to remove elements in NSMutableArray or NSMutableDictionary during enumeration?
I am using block based enumeration similar to the following code:
[[[rows objectForKey:self.company.coaTypeCode] objectForKey:statementType]
enumerateObjectsWithOptions:NSEnumerationConcurrent
...
1
vote
2answers
4k views
how can I sort NSMutableDictionary with keys value?
I have a NSMutableDictionary with string keys and every key has its own array. I want to re-sort the dictionary with keys value alphabetically. How can I do this?
0
votes
5answers
108 views
how to change order of NSMutable array in same way another mutable arrays get changed
I have three arrays. They are name, birthdates and remaining days like below:
name birthdate remaining
"Abhi Shah", "01/14", ...
1
vote
3answers
4k views
How to get NSMutableDictionary count in iphone?
I want to get NSMutableDictionary count in iphone. I want to know how many items are in NSMutableDictionry. I tried these code to find out the solution but, not helped me lot.
NSLog(@"Count : %d", ...
1
vote
3answers
476 views
separating keys and objects from NSMutable dictionary and use the values in insert command of sqlite
hi folks i am developing an sqlite application in iphone.
since i am new to this application, i dont how to use the key and objects from NSMutableDictionary in the command of insert statement of ...
0
votes
2answers
1k views
How to save a NSMutableDictionary into a file in documents?
I would like to save the content of a NSMutableDictionary object to a file. How do I do this ? I already know how to do this task with a NSDictionary object but I don't know how to convert/copy this ...
0
votes
1answer
839 views
iPhone: preserve NSUserDefaults values when application is killed
I am trying to implement "Add to Favorites" functionality using NSUserDefaults. So far I have written following code.
- (void)favouriteButtonClicked:(id)sender
{
favselected = !favselected; // ...
0
votes
4answers
3k views
iPhone - Writing NSMutableDictionary to file
I'm having trouble in writing mutable dictionary to a file. Here's the code that I'm writing.
I'm reading the file like below: (first time when app is ran, it won't have any data)
NSArray* paths = ...
21
votes
4answers
11k views
looping through an NSMutableDictionary
How do I loop through all objects in a NSMutableDictionary regardless of the keys?
4
votes
3answers
3k 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 (
...
3
votes
4answers
3k views
How do you store “int” values in an NSMutableArray* or NSMutableDictionary*? Chronic problems with JSON data that come in as integers.
How do you store "int" values in an NSMutableArray or NSMutableDictionary? Chronic problems with JSON data that come in as integers.
Should I try to store these integers as NSNumber objects or just ...
1
vote
1answer
3k views
iPhone: Not able to store NSMutableDictionary to NSUserDefaults
I am trying to implemen "Add to Favorites" functionality using NSMutableDictionary as I have to add multiple key-values. The following addToFavourites method always display Count=0 even after adding ...
13
votes
4answers
12k 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 ...
11
votes
2answers
2k 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 ...
7
votes
2answers
3k 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?
6
votes
1answer
4k 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 = ...
5
votes
5answers
1k 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.
2
votes
1answer
2k views
1
vote
1answer
1k views
@property retain OR copy
First I read this article
I think I should use "copy" in my programe.
Problem is using NSMutableDictionary copy it will terminate.
* Terminating app due to uncaught exception ...
5
votes
3answers
6k 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 ...
4
votes
2answers
19k views
How to get the value for each key in dictionary in Objective-C?
I'm maintaining a NSMutableDictionary which holds key and value pair.Now i need to perform some operation for each value in it.How to retrive value from dictionary.
// this is NSMutableDIctionary
...
3
votes
1answer
2k views
JSONRepresentation for NSMutableDictionary
I want to call the JSONRepresentation method on an NSMutableDictionary object. I'm calling it using [userDict JSONRepresentation];, but I am getting the following warning:
NSMutableDictionary may ...
2
votes
4answers
593 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
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 ...
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 ...
1
vote
2answers
94 views
Unrecognized selector when adding an object to NSMutableArray
I have a singleton class with a NSMutableArray property to which I want to add objects and remove objects. For some reason I am getting:
-[__NSDictionaryI setObject:forKey:]: unrecognized selector ...
1
vote
3answers
216 views
Sum duplicate on NSMutableArray
I have a NSMutableArray with objects of type NSMutableDictionary,
the NSMutableDictionary contains 2 keys
-Airlines (string)
-Rating (integer)
I have an NSMutableArray with all the objects and ...
1
vote
1answer
162 views
Comparing with NSMutableArray
In my Array 1, which I loaded images from NSDocumentDirectory, I loaded them and add a NSMutableDictionary:
self.images = [NSMutableArray array];
for(int i = 0; i <= 8; i++)
{
NSArray ...
1
vote
2answers
2k views
Dictionary Key Sort Options - Alpha then Numeric
All,
I would like to sort this mutable dictionary of arrays keys like so: A-Z 0-9 but it's coming back sorted 0-9 A-Z. How can I sort it such that the alpha chars come before the numbers? Perhaps ...
1
vote
5answers
831 views
iOS — distinguish an NSDictionary from an NSMutableDictionary?
I have the following code fragment:
NSString* value = @"value";
NSString* key = @"key";
NSMutableDictionary* foo = [NSMutableDictionary dictionary];
NSDictionary* bar = [NSDictionary dictionary];
...
1
vote
3answers
723 views
How to load an NSDictionary from a file created with writeToFile?
I have an NSMutableDictionary, and I wrote it using
[stuff writeToFile:@"TEST" atomically:YES];
But, well, how can I retrive it in the future?
Also, what would happen if I decide to replace my ...
1
vote
3answers
499 views
Initializing NSMutableDictionary
I'm trying to create a filter. I have a function that returns an NSArray for the different categories I can have. I'd like one extra option for "All" to denote that no filter is being applied. For ...
1
vote
2answers
221 views
Can't Send NSMutableDictionary To Another Class
All,
I'm trying to send the NSMutableDictionary "response" to another class of mine, or rather, have the other class pull the dictionary from this class. When the other class uses the "getResponse" ...
0
votes
1answer
12 views
Remove specific objects from NSMutableDictionary
I am saving different codes in a NSMutableDictionary and checking later if a specific code is in the dict.
No I want to remove the entry which contain the code.
Here you see how my array with the ...
0
votes
2answers
63 views
NSMutableDictionary as datasource: can´t remove cell
I use a NSMutableDictionary to populate my UITableView, which works just fine. However, I want to delete rows and then I have to remove the target cell from the Dictionary before I call the ...
0
votes
2answers
253 views
can i add key value pair to NSarray or dictionary inside a for loop?
i want to add values to NSMutabledictionary from a for loop with key value pairs ?
Currently am using this code
for(int j=0;j<[array count];j++){
for(int l=0;l<array2 count] ;l++){
...
0
votes
1answer
186 views
Unknown reason to receive Memory Warning
let me come to issue fast. There is no problem in my code so far. My only concern is Memory management. Let me make my app logic clear.
When App is launched globally NSmutableDictionary is declared ...
0
votes
5answers
506 views
Getting Top 10 Highest Numbers From Array?
I am having a bit of a issue. I have an NSMutableDictionary with 10 NSMutableArrays in it. Each array has somewhere between 0-10 numbers which could each be any integer, e.g. 12 or 103.
What I need ...
0
votes
1answer
361 views
NSXMLParser how to pass the NSMutableDictionary to a NSMutableArray
I would like to pass the nsdictionary I am creating into an nsmutablearray but I'm not sure when or how to do it in the nsxmlparser delegates.
this is what I have done so far
#pragma mark - Parsing ...



