0
votes
1answer
49 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
2answers
81 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
1answer
208 views

Convert JSON formatted NSString to NSMutableDictionary

I have a string I'm getting from JSON. { "Audit_Description": "Request Approved", "Module_Name": "Resource Request", "Field_DisplayName": null", "Previous_Value": Education", ...
0
votes
1answer
83 views

NSOperation Data Parsing Best Practice

I have a question about best practice in downloading data using NSOperation. Currently I am using NSOperationQueue to make multiple requests for JSON data on a remote server. When the data comes in ...
0
votes
1answer
115 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 = ...
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 ...
1
vote
3answers
407 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
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
1k views

NSMutableDictionary for JSON

i'm stuck with a problem! I have a String with JSON like: {"UserName":"username","PassWord":"password"} I build this JSON string with xcode like: NSMutableDictionary *jsonDict = ...
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
1answer
242 views

Complex Json Data and NSMutableDictionary parsing issue

Hi I'm using SBJson for moving Json data in and out of NSMutableDictionar, Im Building the main NSMutableDictionary from few others NSMutableDictionary like this - (NSMutableDictionary *) getGeneral{ ...
0
votes
2answers
394 views

Different NSMutableDictionary formatting for JSON between apps

Okay, so here's the issue. I have two apps that need to package up JSON request data and send it to the server. The issue is that when I print the result from my NSMutableDictionary to be used as ...
0
votes
1answer
325 views

iphone json parser and NsmutableDictionary

I got the Response string {"status":200,"response": {"data": [{"category_name":"Clubs","items": [{"id":"4ee097a59f39d00308000004","name":"Item ...
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 ...
3
votes
2answers
703 views

How to make a if statement with NSNull in objective-c

I am develop a iPhone application, in which i need to use JSON to receive data from server. In the iPhone side, I convert the data into NSMutableDictionary. However, there is a date type data are ...
0
votes
1answer
316 views

JSON Sort String

framework. Hi I'm using json-framework. How to get sorted string when using JSONRepresentation method? Here is my code: NSMutableDictionary *tUserIDParam = [NSMutableDictionary dictionary]; ...
3
votes
1answer
2k views

JSONRepresentation for NSMutableDictionary

I want to call the JSONRepresentation method on an NSMutableDictionary object. I'm calling it using [userDict JSONRepresentation];, but I am getting the following warning: NSMutableDictionary may ...
0
votes
1answer
341 views

Unable to assign data to nsmutableDictionary or nsdictionary

In the code below I just assign string value that has been return form the api call. Assign the string value into the loginResultArray in the 3rd line which has been declared in the .h file. After ...
0
votes
1answer
125 views

Unexpected results from conditions in if, using &&

I am parsing with the JSON parser. I stored the data into searchURL, which is an NSMutableDictionary. I do get a JSON response. ksearchKeyHeadline = "noresults" ksearchKeyNewsText = ...