NSMutableDictionary is the mutable version of NSDictionary.
3
votes
1answer
344 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 ...
2
votes
1answer
83 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 ...
1
vote
1answer
92 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:]
...
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 ...
1
vote
1answer
72 views
how to add data into nsmutable array with a new key?
i am new in iphone development.recently i start a project.after JSON parsing i got a
NSmutablearray
(
{
"contest_description" = " ";
"contest_id" = 245;
"contest_name" = "teating1 ...
1
vote
1answer
291 views
how to get data form NSMutablearray in to NSString
Hello.......
in my apps, i have problem with xml parising .i have same tags differentiate with integer value.each tag has different value.
now the problem me facing is accessing this value for that ...
1
vote
1answer
467 views
NSMutableDictionary delete
i used NSMutableDictionary for getting object and save it into the sqlite, then i show all the datas in tableView.. it is fine. while i deleting the particular row of the table, the data has been ...
1
vote
1answer
389 views
Memory Leak with NSMutableDictionary
Confused to why this line of code is causing a memory leak:
NSPropertyListFormat format;
NSMutableDictionary *d = [NSPropertyListSerialization propertyListWithData:rawCourseArray ...
0
votes
1answer
28 views
Objective-c | How to add different objects for the same index in get params request using Restkit?
I'm trying to obtain a url like
myserver.com/my_content?categories[]=1&categories[]=2&categories[]=3
Using restkit 2.0
I'm creating my params object using NSMutableDictionary, but as I ...
0
votes
1answer
18 views
Mutating method sent to immutable object error
Im receiving the next error:
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '* -[NSCFDictionary setObject:forKey:]: mutating method sent to immutable object'
...
0
votes
1answer
37 views
Access NSMutableDictionary values in Interface Builder
I thought this would be simple but after 2 days I'm admitting defeat.
The task is simple:
In the user interface, display & edit a single NSString value from a Key/Value pair contained in an ...
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 ...
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
1answer
71 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 ...
0
votes
1answer
142 views
Saving NSMutableDictionary to plist iOS
This has become very frustrating over the past day-and-a-bit-too-much: why doesn't this work?
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
...
0
votes
1answer
81 views
How to make NSURL connection start transmitting data into dictionary item?
I've got the tagged NSURLConnection subclass, and need to fetch Image data from multiple URL-s...The idea is clear to me, but i can't start the connection properly, so that data would append into its ...
0
votes
1answer
110 views
Datewise Sectioned UITableView in iOS
I have NSMutableArray which has passenger's journey that will be shown in tableview. I shows correctly in plain tableview. But I want to show in sectioned tableview where tableview headers will show ...
0
votes
1answer
116 views
loadAchievementDescriptionsWithCompletionHandler, NSMutableDictionary always null
I've been trying for hours and I cannot get this to work, in my GameCenterManager class I've got this:
- (void) retrieveAchievmentMetadata {
self.achievementsDescDictionary = [[NSMutableDictionary ...
2
votes
0answers
430 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 ...
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 ...
1
vote
0answers
257 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?
...
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
0answers
38 views
how to only change the content with every navigation while keeping the user objects constant
i have used a tutorial online which uses touchXML and parsed a particular website so that it provides me all the elements with their values
// Convert the supplied URL string into a usable URL object
...
1
vote
0answers
70 views
What could prevent an NSTableView from being sortable?
I've inherited a cocoa project that has an NSTableView in it, and clicking on the column headers does not sort the view, but I want the columns to be sortable. I am using cocoa bindings.
Things I've ...
1
vote
0answers
161 views
loading image from view controller 1 NSDictionary into detailViewController
I am trying to use an NSMutableDictionary in a view controller to load an image and text into a detail view controller when an image is tapped. I am new to programming and I am trying to understand. ...
1
vote
0answers
49 views
iOS - variable not in scope when application moves to background?
I have an NSMutableDictionary declared as follows in my Sample.h file -
@interface Sample : UIViewController<UITableViewDataSource,UIActionSheetDelegate , UITableViewDelegate>
{
...
0
votes
0answers
40 views
Is there a way to remove the newline created between an NSMutableDictionary key/object pair when writing to a file?
I'm trying to make the entries in my NSMutableDictionary look like this when written to a file:
<dict>
<key>Track ID</key><integer>686</integer>
...
0
votes
0answers
62 views
How to sort Array of dictionary inside array of dictionary data in iphone
I have Array of dictionary inside array of dictionary datas, i need to sort inside array of dictionary based on user selection.
for example my data values is
sortResultArray--(
{
...
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
0answers
45 views
iOS setVariable not setting
I am trying to pass a NSMutableDictionary to another view controller so it can be saved but for some reason, it will not work. I have done this multiple times before with pushing view controllers and ...
0
votes
0answers
58 views
XML Data taking up a lot of memory
I have XML files of size of about 150-200 KB each. I am using cocos2D and TBXML Parser. I am trying to load these XML and parse them and I am getting about 2 MB increase in memory usage when I load 4 ...
0
votes
0answers
54 views
Saving to plist file issue
I can't save my new data to plist file for some reason. This is code I have been using for saving data:
-(void)saveData:(NSMutableDictionary *)dictionaryData toFile:(NSString *)filename {
...
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 ...
0
votes
0answers
116 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, ...
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 ...
0
votes
0answers
32 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 ...
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
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
0answers
72 views
How to realize a bookmark function in Xcode?
Hey there I try to make a bookmark function.
The user should have the possibility to save data of a webview in a table view list.
I have some variables like a titeland a code, they stand in relation ...
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
0answers
41 views
How to insert values in to array?
in app i am using NSMutableArray
NSMutableArray *listId = [[NSMutableArray alloc] init];
NSMutableDictionary *nameId = [[NSMutableDictionary alloc]init];
NSString *tnName = [NSString ...
0
votes
0answers
197 views
Ios 6.0 woes with NSMutableDictionary displays null values
I am getting this weird behavior on IOS6.0 and I don't know what kind of problem is. My code is the following:
for (ShortTitle* stitle in shortTitles)
{
NSPredicate *filter = [NSPredicate ...
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
0answers
448 views
Can't add object to NSMutableDictionary (iOS, Objective-C)
I am trying to add an object to an NSMutableDictionary using the setObject:forKey: function,
but for whatever reason, when I run my app in the iPhone simulator and try to perform the action, the code ...
0
votes
0answers
160 views
Create inner hash table using NSMutableDictionary
Expected Result after posting to server (inner hash for 'discovery_source' param)
I want to submit my data to the server in the same format from IOS. I tried to do this
NSMutableDictionary *test = ...
0
votes
0answers
69 views
indexed list of names in nsmutablearray
I have an array with some names.
I want to show them in a tableview sorted by first letter.
To do this I can use tableView:titleForHeaderInSection.
My problem is how to generate the array.
i.e.
My ...
0
votes
0answers
114 views
NSMutableDictionary setting value causes crash
NSMutableDictionary *firstCurr;
NSLog(@"currency list count=%d",[self.currencyList count]);
for (int j=0; j<[self.currencyList count]; j++)
{
NSLog(@"j=%d",j);
firstCurr ...
0
votes
0answers
196 views
ABRecordRef ARC with NSMutableDictionary
So I use an ABRecordRef in my app, and I want to add the address of the person to the label. Prior to ARC, I would've done it as follows:
ABMutableMultiValueRef multiAddress = ...
0
votes
0answers
63 views
Plist loads successfully once but not a second time when running on device
I have a problem with loading data from a plist into a NSMutableDictionary.
In the simulator, everything works. When I deploy it to the iPad, the first time I call this function everything works too, ...
0
votes
0answers
95 views
Storing/Loading NSArray to NSMutableDictionary
I have a NSMutableDictionary of NSArrays stored in the AppDelegate. I need to add new NSArrays in one view controller and load the contents of the NSMutableDictionary in another view controller. I am ...


