NSMutableDictionary is the mutable version of NSDictionary.
-2
votes
1answer
36 views
How to access the values of NSMutableDictionary in Objective-C?
This is my code
NSMutableArray *responseArray = [responseString objectFromJSONString];
I want to do like this to get values:
NSMutableDictionary *responseDict = [responseArray ...
1
vote
2answers
45 views
NSMutableDictionary Adding multiple objects to one key
How do I add multiple objects to same key in an NSMutableDictionary?
I cannot find the right method. The setObject method only updates a single object in the key array. The method addObject: forkey: ...
0
votes
1answer
28 views
NSMutableDictionary not initializing if certain characters included
I'm trying to create an NSMutableDictionary and populate it with forum posts queried from my website. Super-simple code, nothing but...
_postBodies = [[NSMutableDictionary alloc] ...
0
votes
1answer
21 views
Does adding a NSMutableDictionary to a NSMutableDictionary make a copy or does it keep a pointer
Does adding a NSMutableDictionary to a NSMutableDictionary make a copy or does it keep a pointer.
I want to be able to update the content of the first NSMutableDictionary and have that tracked within ...
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 ...
0
votes
1answer
41 views
How do would you split this NSString into a NSDictionary?
I have some data i aquire from some linux box and want to put it into a NSDictionary for later processing.
How wold you get this NSString into a NSDictionary like the following?
data (
eth0 (Errors ...
0
votes
1answer
19 views
Iam adding the array in to the dictionary then remove the all objects from array
Iam adding the array in to the dictionary then remove the all objects from array.
When i print the dictionary it is also shows empty.Means the array data present in dictionary also removing.
if ...
1
vote
3answers
65 views
What does this Objective-C code snippet mean, and what document details it?
Ok, so I've done searches in Xcode, on Apple's developer's site, and on google, and have even downloaded and searched pdf versions of the Key-Value Coding Programming Guide and Collections Programming ...
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 = ...
0
votes
3answers
28 views
How to pass dictionary values in UIAlertView?
I have this dictionary:
NSMutableDictionary *responseDict = [responseString objectFromJSONString];
{"order_processed":"N","m_fname":"zohaib","m_lname":"sheikh",
...
-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
2answers
60 views
How to sort “key” and “value” in NSMutableDictionary by NSDate? [duplicate]
I have a NSMutableDictionary, that contains contact names (NSString's) and the dates (NSDate's). The names are the keys. How do I sort the names by date created?
I assume I have to create a ...
0
votes
1answer
44 views
(NSString *) description — not clear on something… (Objective-C)
Let's say I have two array's. Let's imagine one is a NSMutableDictionary, the other is an NSMutableArray.
I also have this defined:
-(NSString *) description {
// return a human readable version ...
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 ...
1
vote
2answers
57 views
a faster way to mutate an Array of NSMutableDictionaries
based on the fact that you cannot edit mutable Collections while enumerating them, this is the best solution i could come up with to edit a Array of NSMutableDictionaries:
__block NSMutableDictionary ...
1
vote
1answer
30 views
NSMutableDictionary always null
I am developing a simple program that creates SOAP message using NSMutableDictionary for the parameters. I don't understand why the NSMutableDictionary variable that I called from other class always ...
1
vote
2answers
37 views
How would I use an NSMutableArray with a NSMutableDictionary
I have an NSMutableDictionary of websites
[dictionaryOfSites setObject:@"http://www.example.com" forKey:@"Example.com"];
[dictionaryOfSites setObject:@"http://www.site1.com" forKey:@"Site1"];
...
0
votes
2answers
39 views
How to change the string stored in the NSMutableDictionary itself which is pointed by many pointers?
I have a string in the format str=value|value|value|value|... and it is stored in in an MutableDictionary I create as much as buttons as the number os string value in the string above by converting ...
0
votes
1answer
26 views
How to retreive the pretext before an array in iPhone Objective C (parse)
Array obje at index 0---:
<Merchandise:AW9JgReRyQ:(null)>
{
ACL = "<PFACL: 0x201b2590>\";
CoverPhotos = "<ItemPhotos:L5ln3ZN5rm>\";
item = ugh;
listingprice = ...
0
votes
4answers
37 views
Find Dictionary Key inside and Array of Dictionaries
I have an array that holds several NSMutableDictionary objects.
Each time text fields are filled out and the submit button is pressed:
//The strings
NSString *dateString = @"Date";
NSString ...
-4
votes
1answer
36 views
how do I sort my NSMutableDictionary by the keys?
I have a Dictionary
AlphaSite
BetaSite
GammaSite
I saw how can I sort NSMutableDictionary with keys value? but didnt help me much
dictionaryOfWebsites = [[NSMutableDictionary alloc] init];
...
0
votes
2answers
41 views
How do I load the data from my NSMutableDictionary to my UITableView
dictionaryOfWebsites = [[NSMutableDictionary alloc] init];
[dictionaryOfWebsites setObject:@"http://www.site1.com" forKey:@"Site1"];
[dictionaryOfWebsites setObject:@"http://www.site2.com" ...
0
votes
1answer
64 views
Search over all lines in the dictionary using NSPredicate
My data structure is:
Now I iterate through list and add "Name" string to NSMutableArray and then search and filter data using NSPredicate.
How can I search through my whole list? Through Name ...
0
votes
2answers
26 views
Is it possible to set a NSMutableDictionary key under a key?
I set a value with a key like so:
[mutableDict setObject:@"Object to set" forKey:@"KeyOne"];
This works, but now I would like to add a value under "Key one", like this:
[mutableDict ...
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:
...
0
votes
1answer
15 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
40 views
How to compare selected id with country id in array and displaying its name not ID
My json response like this.
{
"continent_code" = EU;
"country_code" = al;
"country_id" = 2;
"country_name" = Albania;
},
{
"continent_code" = AF;
"country_code" = dz;
...
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>
...
-1
votes
5answers
81 views
Creating a NSMUtableDictionary from NSMutableArray
A web service call returns a JSON response and I'm putting it in to an NSMutableArray. The JSON response looks like this,
(
{
DispName = "Jonny Depp (Marvel Comics)";
...
0
votes
1answer
105 views
Filter NSMutableDictionary data in UITableView
I need to filter data in UITableview by text entered in UISearchbar. I followed this example but there data in NSMutableArray and I can't alter it under my requirements. My data is ...
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
2answers
64 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
53 views
iphone sdk+How to retrive dictionary inside array of dictionary values
i want to retrive KpiName key(KpiData is array inside kpiName is dictionary key) and my data structure mentioned below
--Array of dictionaries inside array of dictinary
ex..listOfProjectsArray--(
...
0
votes
2answers
83 views
Parse nested JSON code in IOS
I'm trying to parse the following JSON code in iOS. The JSON code consists of an array of games numbered 0 to x. I've been searching around but cant seem to find any examples which have JSON in this ...
0
votes
2answers
38 views
NSDictionary: Find a specifik object and remove it
I have NSMutableDictionary that looks like this:
category = (
{
description = (
{
id = 1;
name = Apple;
...
-1
votes
2answers
53 views
Crash when accessing NSMutableDictionary by string, in 2 different ways? [closed]
I have the following method:
-(QFFriend*)getFriendById:(NSString*)fid
{
TFLog(@"NList %@", self.nFlist);
TFLog(@":%@:%@:", @"3", fid);
TFLog(@"%@", [self.nFlist valueForKey:@"3"]);
// ...
0
votes
1answer
48 views
What its __NSDictionaryM. Why NSStringFromClass don't return NSMutableDictionary?
I'm getting something weird that I can't get. I'm using a thirdy-party control (https://github.com/brunow/TableKit.m) and it do:
+ (NSSet *)cellMappingsForObject:(id)object mappings:(NSDictionary ...
0
votes
2answers
55 views
Creating a custom collection of custom classes in Objective C
In the iOS app I'm building, I am currently managing a list of objects (Tasks) by using an NSMutableArray containing a number of NSMutableDictionary objects for each individual task.
I would now ...
-1
votes
4answers
57 views
Sorting NSMutableDictionary of ints in iOS [closed]
I am just wondering if it is possible to sort a dictionary of integers in iOS?
Looking at previous examples/questions it seems that most people are sorting arrays of ints or arrays of dictionaries ...
1
vote
1answer
61 views
Stored NSMutableArray in NSMutableDictionary gets empty?
In my project I am storing NSMutableArray in NSMutableDictionary.I am performing this task in a FOR loop.The actual situation is,
within for loop
1.Firstly I stored some object in NSMutableArray.
...
-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++){
...
2
votes
4answers
121 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 ...
1
vote
1answer
31 views
How to add the information in NSMutableDictionary from two plist?
I have two plist. How to add the information in NSMutableDictionary from two plist? how to do it from a plist, I know. But I have 2 plist.
NSString *path = [[NSBundle mainBundle] pathForResource:
...
-1
votes
3answers
40 views
filtering Dictonaries in array
Here I want to filter dictionary in the array which contains the "cate = subcat"
could anybody help me please
menuArr :(
{
Cate = subcat;
Description = "Grilled Chicken";
...
0
votes
3answers
64 views
iOS NSMutabledictionary is null when I setValue and forKey
I know I may been doing something very stupid but I can not figure out where is the error on this code:
NSString *string=@"some string";
[self.dataResponse setValue:string forKey:@"Code"];
Also I ...
0
votes
2answers
34 views
generating JSON from NSMutableDictionary
I am new to Objective-C and iOS development and am trying to write a method for generating a JSON string but when i NSLog this i get a bunch of hexcodes (i am guessing they are pointer adresses) can ...
0
votes
2answers
62 views
Why can't I add to a dictionary within my model from my controller? [closed]
My model is intended to store JSON data. Part of what's to be stored is an array nested in the JSON, which could be a varying number of elements. This is how I retrieve that data in code.
NSString ...
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 ...
0
votes
0answers
68 views
Get Access to Object in Obj-c [duplicate]
Here's my code
-(NSMutableDictionary*)checkArrayForObject:(NSArray *)array withX:(int)mapX withY:(int)mapY withWith:(int)w withHeight:(int)h
{
NSMutableDictionary *tempDictionary = ...
0
votes
3answers
54 views
Removing all data from NSMutableDictionary
Maybe its a very common and nerd kind of question. I am having an NSMutableDictionary to which I am adding some objects and then adding the dictionary to NSMutableArray. After adding the dictionary to ...



