NSMutableDictionary is the mutable version of NSDictionary.

learn more… | top users | synonyms

1
vote
0answers
254 views

__NSDictionaryM setObject:forKey:]: message sent to deallocated instance

I m doing XML parsing through NSXMLParser. But when it comes to didendElement of NSXMLParser it crashes sometime and give result sometimes.I couldnot understand where I m going wrong? ...
0
votes
2answers
370 views

NSDictionaryI setObject:forKey:]: unrecognized selector sent to instance

I am trying to add "dateTime" to My dictionary as defined follows: Symptom Ranking: { 5111ef19253b4a9150000000 = 1; 5111f029253b4add4e000000 = 1; 5111f036253b4a123d000001 = 1; ...
0
votes
1answer
74 views

EXC_BAD_ACCESS on NSMutableDictionary

I am beginning with iOS development, I have this code : First of all I declare the listOfItems NSMutableArray: @interface SAMasterViewController () { NSMutableArray *listOfItems; } @end And ...
-1
votes
2answers
131 views

how to show dictionary data in tableview

I have created an array and its data are shown in a tableview. Now I want to add dictionary data to that array and show it in the same tableview. I created a button which will add the dictionary value ...
0
votes
1answer
113 views

How to sort by date the nsmutabledictionary

I have a JSON returned NSMutabledictionary that contains the following OdometerStart = "9 miles"; Size = 40; StartTime = "01-30-2013 2:30 PM"; Tractor = T04; OdometerStart = ...
0
votes
1answer
41 views

setObject doesn't work within one of the classes

I'm trying to make a 'saveState' method with implementation (in blablabla.m): -(void)saveState { NSString *masterCode = [[NSString alloc] initWithString:first]; masterCode = [masterCode ...
-2
votes
2answers
306 views

How to remove key from nsmutabledictionary When value of that key is empty or null in ios?

I have created NSMutableDictionary and the values of keys are formed as nsarray. I have removed objects of keys. I have no doubt for this case. But I would like to remove key When value of that key is ...
0
votes
2answers
135 views

How can I add to NSMutableDictionary key NSIndexPath and value BOOL? [duplicate]

Possible Duplicate: Objective-C dictionary inserting a BOOL I need to add key-value pair NSIndexPath -> BOOL to NSMutableDictionary.How can I do this? It's really a problem for me. I can't ...
0
votes
2answers
41 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 ...
0
votes
0answers
114 views

iOS NSKeyedArchiver — NSMutableDictionary coming back as NSPlaceholderDictionary?

I have a large and complex object graph. I have implemented NSCoding to archive and unarchive the object graph. Normally, everything works fine. But under certain highly reproducible circumstances, ...
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
4answers
631 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 ...
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 ...
3
votes
2answers
56 views

Merging NSArrays containing NSDictionarys

I have an NSMutableArray of NSDictionarys something like this: myArray ( { chatins = 20; placeImageString = 244211112265925; }, { chatins = 5; placeImageString = ...
1
vote
1answer
167 views

Not able to store NSMutableDictionary in NSUserDefault

Hi i know this question is asked before i wanted to know where i am going wrong in my code.So i am asking this question .. I am trying to store the value of nsmutabledictionary into nsuserdefaults .. ...
0
votes
1answer
43 views

Spontaneous “NSCFString encodeBytes:length:forKey: unrecognized selector” exceptions

I'm using code that I've used in several other projects without incident. Suddenly, I'm getting random error messages when using the same code - but only in one particular project. This code has run ...
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 ...
-1
votes
2answers
60 views

Update NSMutableArray after adding New object

I have a NSMutableArray which contains some NSMutableDictionary object type. In some situations I have to add one field to each NSMutableDictionary inside this Array, but I don't know how? I do add ...
0
votes
5answers
63 views

NSMutableDictionary updates not working in UItableview

I'm using *NSMutableDictionary articleDictionary as a datasource for tableview.I have different tab in tableview page, each tab i'm using different xml file ...
0
votes
2answers
63 views

Nested NSMutableDictionary efficiency and alternatives

I need to store big amounts of nested strings and access all the data using some simple format (for example, 'my.data.object.path'). For example, if I've got the following structure: - object1 - ...
0
votes
2answers
84 views

Cant add array to dictionary

I have a mutlidimensional dictionary, and am having problems adding an array to it. My dictionary structure looks like this: (taken by NSLogging the dictionary) { Downloaded = { ...
0
votes
4answers
84 views

Can I create a custom object to be used in NSMutableSet?

I'm new to Objective-C, so please bear with me. I need to create an array (or a set) of name=value pairs with one condition that names can repeat in the set (thus I can't use NSMutableDictionary.) I ...
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 ...
0
votes
1answer
62 views

Write to dictionary in plist works but then read dictionary from plist returns (null)

This is how I am accessing the dictionary in the plist in my viewDidLoad method: NSString* documentsDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) ...
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"?> ...
1
vote
1answer
406 views

Why does NSUserDefaults fail to save NSMutableDictionary?

I’m trying to save a NSMutableDictionary with NSUserDefaults. I read many posts on the topic in stackoverflow... I also found one option that worked; however unfortunately it worked only once and then ...
0
votes
1answer
92 views

Trying to add NSString to NSMutableDictionary doesn't work

I'm getting a name and a phone number from text fields, till here all is ok. When I'm trying to add these data to my NSMutableDictionary nothing happens. ViewController.h ...
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? ...
3
votes
1answer
340 views

keysSortedByValueUsingSelector crashes but sortedArrayUsingSelector runs fine

I found a workaround myself, but still trying to understand the problem. I created a Autocomplete text field with the use of uitableview which is hidden until textfield is edited. The UI part works ...
1
vote
2answers
72 views

Need JSON document that is generated to be in same order as objects inserted in NSMutableDictionary in iOS

I am generating a JSON document from an NSMutableDictionary that is composed of keys that point to NSStrings, as well as two keys that point in turn to other NSMutableDictionary's. My problem is that ...
0
votes
1answer
55 views

Need to prefix JSON document being generated from NSMutableDictionary in iOS

I am able to successfully generate a JSON document by iterating through a NSMutableDictionary. This NSMutableDictionary in turn, contains two values that are also NSMutableDictionary's, the keys of ...
-4
votes
2answers
656 views

Get dictionary value from array in iOS?

I have the following NSArray: ( { geometry = { location = { lat = "37.789632"; lng = "-122.417004"; }; ...
1
vote
1answer
52 views

How to sort this case?

How to sort this kind of case? I have a NSMutableArray. My NSMutableArray can have an object or NSMutableDictionary. My NSMutableDictionary only has 1 object (an object as its object and a string as ...
1
vote
1answer
89 views

Get back value of Object key'ed NSMutableDictionary

I have a case where I need to have NSMutableDictionary with NSManagedObject as the key. Based on this post, I can set NSManagedObject as key in dictionary by: [NSValue valueWithNonretainedObject:] ...
0
votes
0answers
31 views

NSMutableArray grouping using NSMutableDictionary

I have an NSMutableArray of custom objects. I need to group the items in the array based on the keys in another array. I want to compare the objects in the first array with the keys in the second ...
1
vote
2answers
87 views

Need to dynamically create ViewController objects from a tableView selection in iOS

I have a UIViewController in my iOS application that displays a table that is derived from an NSMutableArray. The cells in this table each refer to a unique UIViewController that is called when the ...
0
votes
1answer
70 views

Remove duplicates from NSMutableDictionary within NSMutableArray

I have NSMutableArray i.e books which contains objects. These object are NSMutableDictionay, each object is a key value pair of 3 things i.e. id, name, username. Let there is a case that i have 3 ...
1
vote
3answers
403 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 ...
0
votes
1answer
152 views

NSMutableDictionary and NSMutableArray

Hello I am making a card game for ios, It is the kings drinking game, To do this I use the following code to fill a dictionary cardValues = [[NSMutableArray alloc] init]; for (card1 = 1; card1 ...
0
votes
1answer
93 views

Remove Object from NSMutableDictionary after some Time

i want to remove some objects from a NSMutableDictionary after some Time. I have: //first Method start PedObjectTimer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self ...
0
votes
0answers
77 views

NSMutable array values remove from nsmutable dictionary

I am new to ios i am making an app in which i have to read contact names from addressbook and display it in an tableview. I have read all the contacts and displayed in tableview. Once user select some ...
0
votes
1answer
248 views

Is it possible to add values with duplicate keys to NSDictionary?

I have something like this: @interface Person : NSObject { NSString *fname; NSString *lname; } NSString *keys = @"a","a","b","b","b"...."; for(NSString *key in keys) { Person *newPerson; ...
-4
votes
3answers
107 views

How to reinitialize NSMutableDictionary in an ARC project? [closed]

I have a class level NSMutableDictionary object that I need to initialize, and reinitialize. Since my project is ARC, I am not sure if I can use release. What is correct way to do it? My current ...
2
votes
1answer
85 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 ...
3
votes
2answers
215 views

Pointer lost in FSEventStream Callback (ObjC and ARC)

I've had success getting the basics of FSEventStream working to allow me to watch a folder for new file events. Unfortunately, the callback reference I'm passing into FSEventStreamCreate() is being ...
1
vote
3answers
95 views

What is @[] and @{} in Objective-C? [duplicate]

Possible Duplicate: What are the details of “Objective-C Literals” mentioned in the Xcode 4.4 release notes? I've got question about @[] and @{}. Some code taken from internet: ...
0
votes
0answers
84 views

How to store images and keys to NSMutableDictionary

I'm receiving an error when writing to my NSMutableDictionary "dictionary". When implementing (below) from my item list class: - (void)setImage:(UIImage *)i forKey:(NSString *)s { [dictionary ...
0
votes
1answer
38 views

How to store one symbol in NSMutableDictionary?

I want to store one symbol '0' as NSMutableDictionary value. How can I do this? NSString is not appropriate because it creates a string not a single character and as far as I know there is no NSObject ...
1
vote
1answer
468 views

NSMutableDictionary setObject:forKey (ios 6 without ARC) results in NULL

The following code was working prior to upgrading to iOS 6. It works in the 5.1 iPhone simulator as well, but fails with 6.0 simulator and device. Trying to setObject:forKey in a loop to an ...

1 2 3 4 5 14