0
votes
2answers
72 views

How do i add object to dictionary with key?

I have plist ,i want add the elememts from that plist to a mutable dictionary .First i check the user name in plist and my current name are same or not if its same then i wanna add all value to that ...
1
vote
1answer
35 views

Not able to retrieve Plist value to NSDictionary

I use following code to display the plist into NSDictionary/NSMutableDictionary ,but when i print that variable it returns null value? please help me? NSArray *paths = ...
-5
votes
1answer
42 views

How to pass the dictionary data to TableView at cellForRowAtIndexPath with dynamic Keys and Values in iOS? [closed]

if ([[[testMenuGroupAry objectAtIndex:0]objectAtIndex:group] isEqualToString:[filteredAry objectAtIndex:objCount]]) { NSLog(@"object count is %d",objCount); [groupAry ...
0
votes
1answer
33 views

how to copy a NSDictionary with keyvalues

I have a method that is returning some values in its parameters. These values are NSDictionaries that have KeyValues. I would like to know how to make a copy of these NSDictionaries that include the ...
0
votes
1answer
51 views

NSMutableArray of dictionaries from JSON feed insert new object for key iOS

I receive and array of dictionaries from a JSON feed and assign it to an NSMutableArray called jsonArray i.e: jsonArray = [deserializedData objectForKey:@"reports"]; The feed looks like this: ...
-1
votes
2answers
275 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++){ ...
1
vote
0answers
107 views

NSdictionary last key return (null)

I have next code for fetching SQLite: if (sqlite3_prepare_v2(database, query, -1, &statement, NULL) == SQLITE_OK) { while(sqlite3_step(statement) == SQLITE_ROW) { NSInteger ...
2
votes
3answers
114 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 ...
0
votes
0answers
34 views

Mutable deep-copy of a NSMutableDictionary

First of all I found something similar: deep mutable copy of a NSMutableDictionary but it didn't solve my problem. I have a NSMutableDictionary as a template. NSMutableDictionary ...
0
votes
5answers
54 views

traversing dictionary in key order

I am using the following syntax to print the dictionary: for(id key in myDict) NSLog(@"key=%@ value=%@", key, [myDict objectForKey:key]); But I notice that, the oeder is not according to index. ...
0
votes
0answers
98 views

adding textfield.text to uitableview

to make a long story short I'm building a game, I am using a uitableview with a custom cell as a scoring system. after a lot of research, questions and testing, and thanks to a few people who gave me ...
-1
votes
1answer
75 views

How to fetch details of objects stored in NSDictionary? [closed]

I am using UILocalnotification to fire reminders and in scheduleNotification method i am firing notiification . I have another method called remedyDetailsForRemedyID which returns NSMutableDictionary ...
1
vote
2answers
61 views

How to effectively use NSMutableDictionaries as keys for a dictionary?

I want to use NSMutableDictionary instances as keys for another NSMutableDictionary. NSMutableDictionary *stuff = [NSMutableDictionary dictionary]; NSMutableDictionary *first = ...
-1
votes
2answers
56 views

store RSS data in NSDictionary

I work on a project in which you can let display RSS feeds in a UITableView. When tapping on it will be forwarded to a UIViewController (detailView). My problem is I'm not very familiar with ...
0
votes
3answers
82 views

Using UIImageView as key in NSMutableDictionary to look up boolean

The title pretty much says it all. I want to create an NSMutableDictionary where I use UIImageViews to look up boolean values. Here's what it looks like: My .h file: @interface ViewController : ...
0
votes
1answer
65 views

GameKit GKLocalPlayer alias as NSDictionary key

I am developing an iDevice game and I would like to store the local player's scores on the device. However, the local player may change. For example, if a family shares an iPad, then they may sign in ...
2
votes
2answers
65 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 ...
0
votes
2answers
42 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 ...
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 ...
3
votes
4answers
95 views

NSDictionary release triggers valueForKey return value release

I am currently trying to work myself into iOS development. Right now I'm having trouble understanding memory management. This is the cause of my confusion: NSString *path = [self.dataPath ...
0
votes
0answers
74 views

Accessing NSMutableDictionary in objective c

Hi I am currently working on some xml parsing in objective c. The app stores the value that is extracted from the xml into a NSMutableDictionary called attributes In my ValueParser.m, the following ...
2
votes
1answer
82 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 ...
1
vote
2answers
35 views

File containing array containing dictionnary

I have a file that contains an array of dictionaries. How can I read it back to use it as a regular array containing those dictionaries in my code? Thanks <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
1answer
71 views

App crashes when setting objects to NSMutableDictionary with no crash log

I try to make a simple score system for my game and I'm using dictionary and save it using NSUserDefaults to store player's scores. However when I try to set new score to existing key/value the app ...
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? ...
1
vote
3answers
408 views

JSON Results into NSDictionary in Objective-C

I have searched all over for an answer to this and i'm sure it's simple, might just be me stuck in a corner after looking at this for so long! Hope someone can help. Apologies as i'm new to ...
1
vote
1answer
51 views

Can't log description of NSMutableDictionary

I have an NSMutableDictionary with one to four objects in it. Each of the contained objects is an NSDictionary. The first dictionary contains about 83,000 references to NSManagedObjects. The second ...
0
votes
3answers
108 views

How to find the duplicates in NSMutableDictionary? [closed]

pseudo code: NSArray *arr1 = {"mike","george","Tim","Tom"...} NSArray *arr2 = {"mike","george","Chris","Adam"...} NSArray *arr3 = {"Don","george","mike","Tom"...} NSArray *arr4 = ...
1
vote
1answer
58 views

NSMutableDictionary and Caching to Disk

I'm trying to optimize my application as much as I can. All I am asking is "NSMutableDictionary after you add an object for a certain key, Does it store the data in the ram memory or the storage ...
0
votes
1answer
46 views

Refer specifically to key or object when using an NSDictionary in a For Loop

Confusing one to explain: I'm trying to iterate a for loop through an NSMutableDictionary, looking at its "key" values, and comparing those to the "key" values of a second NSMutableDictionary. If ...
0
votes
1answer
310 views

take nsdictionary and nsstring values from a nsdictionary

I have a function that returns an NSDictionary named data. It contains 2 objects: a NSDictionary object with the key currency_data and an NSString object with the key time. I want to pass : the ...
0
votes
0answers
48 views

Editing .plist dictionary object-c

How do I programmatically create and populate the .plist NSMutableDictionary, which should expand dynamically, I need is such a structure: Root | |___id-1 | |_______title1 | |_______image1 ...
0
votes
3answers
538 views

Add objects to dictionary created by JSONKit?

In my project I have to load a number of json files. I parse them with JSONKit and after every single parsing with NSMutableDictionary *json = [myJSON objectFromJSONString]; I add them to an ...
2
votes
3answers
76 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 ...
0
votes
1answer
126 views

Migrating, and add data, on file using NSDictionary code issues

I am migrating from an old version (v2) to the new version (v3) of my app and by that adding two new fields for each player into the playerdata.plist. The reason why i am putting '99' in the new ...
0
votes
4answers
493 views

Find Existence of Key in NSDictionary

How can we identify the object is available for a particular key. I have tried following: for(NSDictionary *item in jsonArray){ if([item objectForKey:@"EventDate"]) NSLog([item ...
0
votes
0answers
32 views

Crash while assuaging value to NSMutableDictionary

I am facing a problem, I want to set values to the NSMutableDictinary when clicking on a cell, every thing is fine the problem is when i am getting only one row and one section, I am getting the below ...
0
votes
1answer
226 views

Split string into multidimensional NSMutableDictionary

Assuming the following example array: {"/documents", "/documents/files", "/pictures"} I wish to create a multidimensional NSMutableDictionary that looks like (if I were to create it manually): ...
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 ...
0
votes
1answer
1k views

nsdictionary copy vs mutable copy

I have NSMutableDictionary *myDictionary = [[NSMutableDictionary alloc] init]; id dict = [myDictionary copy]; but is dict now just a regular NSDictionary? Or is it a copy of the ...
0
votes
1answer
153 views

Create an NSManagedObject with the contents of a NSMutableDictionary (may have NSCFString in place of number)

I want to create an NSManagedObject with the contents of a NSMutableDictionary and Visa Versa. KVC doesn't work properly in NSManagedObject so i cant use [managedObject setValue:@"1" ...
0
votes
2answers
1k views

Objective-C - Adding items from NSDictionary to NSMutableDictionary

I'm having trouble trying to load objects from an NSDictionary to an NSMutableDictionary - code is as follows : dictListData = [[NSMutableDictionary alloc] initWithCapacity:200]; ... NSError ...
0
votes
2answers
2k views

add objects to the dictionary using for loop

in my program i want to add 20 objects to dictionary using for loop so i did NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]; ...
0
votes
1answer
232 views

Pulling data out of NSMutableDictionary and adding to a different NSMutableDictionary

SETUP I have a NSMutableDictionary with over 800 NSMutableDictionaries in it representing employees. I am trying to implement a search bar and i am having serious issues working with my ...
1
vote
5answers
847 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]; ...
0
votes
1answer
130 views

Storing an unregistered Class in a NSMutableDictionary

In my code, I'm dynamically creating classes, and trying to store them in a NSMutableDictionary: NSMutableDictionary* classDict = [ [ NSMutableDictionary alloc ] init ]; ...start loop Class ...
1
vote
1answer
1k views

setObject:forKey: of NSMutableDictionary overwrites all data in dictionary

for ( int cnt = 0 ; cnt < nPeople ; cnt++ ) { ABRecordRef ref = CFArrayGetValueAtIndex(allPeople, cnt); NSString *firstName = (NSString *)ABRecordCopyValue(ref, ...
1
vote
2answers
227 views

Category NSMutableDictionary/NSDictionary should return NSMutableDictionary/NSDictionary Depending of the caller class

I was busy with this for some hours, but see no head or tail. How should I create an NS(Mutable)Dictionary category that I can let return the same class as the sending method class. Sample ...
0
votes
1answer
104 views

NSMutableDictionary not getting expected output.

Its only outputting one set for NSMutableDictionary not both. I want to create an JSON request using NSMutableDictionary (JSONRepresentation). // My code NSArray *keysEndpoint = [NSArray ...
0
votes
2answers
2k views

“Mutating method sent to immutable object” despite object being NSMutableDictionary

I'm using NSMutableDictionary and hit this error: 'NSInternalInconsistencyException', reason: '-[__NSCFDictionary removeObjectForKey:]: mutating method sent to immutable object' Here's the code: ...

1 2