A member of Apple's Objective-C framework Cocoa. NSDictionary objects manage associations of keys and values.

learn more… | top users | synonyms

0
votes
1answer
31 views

Search controller searching an array of dictionaries

I am trying to follow two tutorials on how to implement a search controller for a UITableView. This is all working ok so far the issue I have is with the search/filter itself: Tutorial links: ...
0
votes
0answers
18 views

iOS 5: NSDictionary encodeWithCoder inserts nil into array

I am seeing a problem that seems to be unique to iOS 5, where trying to encode a dictionary results in a crash because an array is populated with a nil object in the process. This is confusing to me ...
0
votes
1answer
18 views

Working with NSArray and NSDictionary to store facebook friends to later be used in application

I am trying to work with NSArrays and NSDictionarys to store the users facebook friend information. The data will later be used in a table view. Ideally I would like the information to be stored ...
2
votes
1answer
55 views

how can i populate dictionary with contents of url .txt file

I saved a dictionary contents in server and from server it automatically converted to .txt file how can i load that contents from url to another NSDictionary? I am using this code: NSDictionary ...
0
votes
2answers
70 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

iOS class selection NSDictionary or Core Data

I am learning iOS programming and wouldn't mind an opinion or two on the most appropriate class to use for my application, NSDictionary or Core Data. I would like to be able to create an array of ...
0
votes
1answer
46 views

ios development - How to do JSON parser?

I'm new to ios development. Now I get a JSON file from server. I use NSDictionary to get objects. When I debug, I could get "name", "address" values. But I don't know how can I get all "dish" ...
0
votes
6answers
44 views

How to handle NSDictionary ObjectForKey JSON feed errors crashes

I am working on an app which consumes a JSON Feed but have found that if the Feed is incorrect or has missing objects it will cause my app to crash. This is the feed we are receiving currently, ...
-1
votes
1answer
33 views

How can i sort a plist value using its own object value of NSDate? [closed]

Iam trying to sort the following plist by order of NSDate ,but i dont know how to Sort this thing?Please give some idea ?
1
vote
1answer
31 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 = ...
1
vote
1answer
30 views

JSON to NSDictionary literal

I need to build an NSDictionary that I can then parse with NSJSONSerialization in order to get a nice JSON formatted string. The final output of my JSON needs to be something like: "Viewport":{ ...
-5
votes
1answer
39 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 ...
1
vote
1answer
43 views

NSDictionary and Core Data

Please I am trying to gain some knowledge in core data. I have so far gotten the hang of creating entities and adding, retrieving and deleting values from this entity. My question is the following. ...
-2
votes
1answer
63 views

Objective-C: Code Clarification [duplicate]

I'm having trouble understanding the code below: for (SKProduct * skProduct in skProducts){ IAPProduct * product = _products[skProduct.productIdentifier]; .h @property (nonatomic, strong) ...
0
votes
4answers
37 views

when i remove the values from array after adding in to the dictionary.The array values are removed from the dictionary in iOS?

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 ...
0
votes
1answer
21 views

Sorting keys and cellForRowAtIndexPath

I'm new to iOS programming. I have to sort my keys in my NSDictionary or more like reverse the order of my keys. What my current keys right now are like this; Oh! And I do not have values for my ...
1
vote
2answers
34 views

How to get NSDecimalNumber from NSDictionary

I want to set the value for Key1 as 10.00 itself rather than 10 NSDictionary *dict = [NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects: ...
0
votes
2answers
84 views

What does this Objective-C dictionary code do?

.h @property (nonatomic, strong) NSMutableDictionary * products; //not synthesized in .m .m - (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response ...
0
votes
2answers
27 views

EXC_BAD_ACCESS while filling in the dictionary (?)

void CountlyRecordEventSegmentationCountSum(const char * key, const char * segmentation, int count, double sum) { NSString * seg = CreateNSString(segmentation); NSArray * entries = [seg ...
1
vote
3answers
61 views

Filtering NSDictionary with predicate

I am using a NSDictionary that itself contains dictionaries some keys and its values.The format is like , { "1" = { "key1" = "ss", "key2" = "rr", "name" = "nm" }, ...
0
votes
1answer
20 views

Accessing the xml values from NSDictionary

I am using this xmlreader. Here is my code NSDictionary *xmlDict = [XMLReader dictionaryForXMLString:responseString error:&error1]; NSLog(@"XMLData: %@",xmlDict); I can save and log the data ...
-2
votes
2answers
71 views

test NSDictionary valueForKey using ISEqualToString [closed]

I am using an IF statement to see if the valueForKey is @"T" in my NSDictionary, however i don't think i am accessing the NSDictionary correctly because even when i know the valueForKey is T is never ...
1
vote
3answers
57 views

Difference between literals and class methods for NSMutableArray and NSMutableDictionary [duplicate]

When I started with OSX/iOS I used NSMutableArray * a1 = [NSMutableArray arrayWithCapacity:123] ; NSMutableDictionary * d1 = [NSMutableDictionary dictionaryWithCapacity:123] ; Then ...
0
votes
1answer
32 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 ...
-2
votes
2answers
41 views

Function Does Not Recognize Array Values [closed]

I tried to create an array via parsing a .csv file Then I run it through the this function. //Array NSString *filePath = [[NSBundle mainBundle] pathForResource:@"499CSV" ofType:@"csv"]; NSString ...
0
votes
2answers
41 views

Silent crash when creating a NSDictionary dictionaryWithObjectsAndKeys [closed]

Profile *profile = [[Profile alloc] init]; NSLog(@"badgeId is %@", badgeId); NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:[profile getAuthenticationToken], @"auth_token", ...
0
votes
1answer
22 views

How can I use an integer value as 'key' to set value in NSMutableDictionaryw with Ios

How can I use an integer value as 'key' to set a float value in NSMutableDictionary ?
0
votes
3answers
32 views

How populate prototype cell text labels with NSDictionary object populated with JSON data using AFNetworking

New to iOS. I am downloading JSON data using AFNetworking and putting the data in a Dictionary object. This is done in the following code: -(void)locationRequest { NSURL *url = [NSURL ...
0
votes
2answers
38 views

How can I add elements to an NSDictionary in the following format?

I have an NSArray of names and ages. Now I am trying to create a new NSDictionary with item 0 holding the first name and first age and item 1 holding the second name and second age from the ...
-3
votes
2answers
68 views

Using NScanner to parse CSV File to Dictionary Array [duplicate]

I've created an iPhone app that has a dictionary array of locations (lat,long,point). I created the array by manually entering each value. myLocationArray = @[ @{ ...
0
votes
1answer
44 views

Flatten nested NSDictionary

Is it possible to "flatten" a NSDictionary ? I retrieve JSON data, and fill a dictionary with it. It ends up looking like this: data: { author = "user" message = "message" response: { ...
1
vote
1answer
35 views

Generate a complete list of key-value coding paths for nested NSDictionary's?

I have an NSDictionary that contains keys and values, and some values will also be NSDictionarys... to an arbitrary (but reasonable) level. I would like to get a list of all valid KVC paths, e.g. ...
0
votes
2answers
39 views

Send Nested JSON using AFNetworking

To send registration data to server, I am using JSON is in following form: {"regData": { "City":"Some City", "Country":"Some Country", "Email_Id":"abc@gmail.com", "MobileNumber":"+00xxxxxxxxxx", ...
0
votes
1answer
31 views

(iOS) Reading a plist from Documents folder - I get correct path but can't load dictionary

I know there are tons of threads already on this issue, but I cannot seem to find one that solves my problem. I have a plist with a dictionary as the root, containing three arrays. My code to write ...
0
votes
0answers
9 views

sending json array with putpath method

I have a json in nsmutablearray like this : NSMutableArray *items; ( { name = JERRY; year = 2013; }, { name = TOM; year = 2012; } ) i want to ...
-4
votes
0answers
51 views

How to convert NSArray to NSDictionary? [closed]

I want to convert data like this {"id":"997","name":"","age":"0","phone":"","image"} {"id":"1025","name":"","age":"0","phone":"","image"} saved in NSArray to Nsdictionary to be name ... age .... I ...
0
votes
3answers
37 views

iOS NSDictionary pass through function

I have my view controller named SecondViewController and when user selects which article wants to read, I want to navigate to ThirdViewController and pass NSDictionary with article data. - (void) ...
0
votes
2answers
19 views

Displaying a certain key into a certain tab bar

I'm new to objective-c programming so I'm not sure about the coding. Basically, I have an NSDictionary called lessonDict containing all my lesson modules. The keys in my NSDictionary are the days of ...
0
votes
1answer
22 views

Remove (not exact) duplicates of NSDictionaries from array

I have an NSMutableArray of many NSDictionaries that contain keys like "Title". In some cases there are duplicates of dictionaries with the same "Title" but differences in the other keys. How can I ...
1
vote
1answer
45 views

enumerateKeysAndObjectsUsingBlock - order of entries in dictionary?

Does anyone know if the order of enumeration using enumerateKeysAndObjectsUsingBlock on a NSDictionary is defined? My experiments suggest that it's the same order as stuff was added, but I can't be ...
0
votes
4answers
50 views

SIGABRT while passing NSDictionary to UITableView

In a UITableViewController subclass, i am unable load the data, i am fetching json data from Url, Json data: { "terms": "a", "results": { "Events": [ { "Event_Name": "808 ...
0
votes
0answers
13 views

How can set data for subItem in SDNestedTable?

I have just used SDNestedTable https://github.com/serverdensity/ios-SDNestedTable. I created a class inherrited from SDNestecTableViewController. This class has some ivars { NSMutableArray ...
0
votes
2answers
52 views

Access variable which lies inside for-loop

I have got a for loop, but can't access variable from outside the loop: for (int i = 0, j = 0, k = 0, l = 0; i < [array1 count] && j < [array2 count] && k < [array3 count] ...
0
votes
1answer
27 views

Sorting an array by number of times an object appears in that array

I'm lost in a sea of sort descriptors, dictionaries, and counted sets. Hoping someone can help me find an easier way. Starting with a sorted array like this (of NSNumbers): ...
0
votes
1answer
35 views

Accessing Dictionaries inside a Dictionary by Index in Obj-C

I'm currently trying to learn Objective-C and I've stumbled across a little problem. I want to build an iPad Application for collecting simple Numbers,which the User enters, by Date and Time. To do ...
-2
votes
1answer
39 views

get NSDictionary from dictionary of C# [closed]

I am trying to sending dictionary from c# dictionary to NSDicationary obj-c code. But I don't know how to pass & get the dictionary in obj-c code. Dictionary datatype doesn't allow in obj-c then ...
-2
votes
2answers
107 views

Converting a JSON string into NSDictionary [closed]

I'm trying to build an app in which people can order goods from different stores. I am totally new to programming, and I thought building a project like this would be a good way to learn it. I'm ...
1
vote
3answers
65 views

How to check a typedef'd obj in Objective-c NSDictionary

I've got an method that takes NSDictionary arg. This NSDictionary has some predefined keys it'll take. All the obj's should be strings. But only certain string objs are valid for each key. So my ...
0
votes
1answer
24 views

Can't set different value for different dictionary

I loop through dictionaries to calculate distance from user location to annotations like this: CLLocation *pinLocation = [[CLLocation alloc] ...
0
votes
3answers
56 views

How to add a key and string in dictionary?

My plist file: NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES); NSString *path = [[documentPaths lastObject] ...

1 2 3 4 5 36