Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
15k views

Deserializing a complex JSON result (array of dictionaries) with TouchJSON

I did a few tests with TouchJSON last night and it worked pretty well in general for simple cases. I'm using the following code to read some JSON content from a file, and deserialize it: NSString ...
2
votes
2answers
1k views

TouchJSON, dealing with NSNull

Hi I am using TouchJSON to deserialize some JSON. I have been using it in the past and on those occasions I dealt with occurrences of NSNull manually. I would think the author had to deal with this as ...
2
votes
1answer
888 views

Invalid touchJSON string

I get an invalid JSON string, which contains ; ( characters. Any guess what is going on? My Code: -(void)getJSONFeed { // Create the URL & Request NSURL *feedURL = [NSURL ...
2
votes
3answers
938 views

Json and images

I've got a db on a server and want to get some data fro my iphone. I use TouchJson and everything works fine but I've got a little problem. I don't know how to download images. When I try to build and ...
2
votes
1answer
496 views

Map NSDictionary to domain objects after deserializing JSON

In my project I use TouchJSON to deserialize a JSON string. The result is a pretty NSDictionary. I would like to get the data in this dictionary into my domain objects / data objects. Is there a ...
1
vote
1answer
40 views

Problem Comparing Value Returned by valueForKey Method of NSDictionary

I use TouchJSON to convert the following to an NSDictionary object // sample JSON object { data = ( { companyId = 4779; companyName = "ABC Corporation"; }, ...
1
vote
0answers
160 views

TouchJson memory leak?

I'm using TouchJson to parse json data from facebooks graph api. I'm getting some memory leaks though, and I don't really understand why... In my effort to find the leak, I've removed everything ...
1
vote
1answer
452 views

Problems serializing a dictionary with TouchJson

i'm developing a small app for the ipad and i'm trying to serialize a dictionary to NSData to save in the disk. I'm using with framework TouchJson. And example of my example structure: { line = { ...
1
vote
2answers
204 views

Have TouchJSON return mutable objects?

I am receiving some json from a web service. I parse this using the TouchJSON library. I keep the data around for the user to change certain values and then I want to return it to the web service. ...
1
vote
2answers
392 views

iPhone unable to parse JSON results from YELP

I'm attempting to parse validated JSON from a yelp search result. This correctly spits out the json as expected (confirmed in simulator browser and my own). - (void)connection:(NSURLConnection ...
1
vote
2answers
655 views

Monotouch binding for TouchJSON?

The admob sdk for iPhone uses a proprietary libAdMobNoThumb.a library and an Objective-C source based TouchJSON library. Does anybody know of a C# binding for TouchJSON so that we can include it? Or ...
1
vote
1answer
283 views

iOS: TouchJSON & retrieved data size

I want to display a UIProgressView indicating the amount of data received as I request JSON data using touchJSON. I was wondering if there was a way to listen to the size of the data being received. ...
1
vote
1answer
427 views

iPhone: fastest way to fire API calls and parse JSON?

I currently have a UITableViewController that parses a JSON response (using TouchJSON) fired asynchronously using an ASIHTTPRequest. I'm very concerned with the performance of my application.. 6 out ...
1
vote
2answers
181 views

How do I get the value's of name & url from a nsdictionary object?

I am using touch JSON which worked out pretty well for me. I was able to take an array, put it in a dictionary, serialize it via touchJSON and send it out via http. Now on the return end, I received ...
0
votes
1answer
39 views

touchJSON gives NSInvalidException NSNull isEqualtoString:

Hello I am new to Cocoa Development, and I'm trying to figure out what I did wrong. I followed a (tutorial) that uses touchJSON to fill a tableView with a mySQL database in Xcode. When I run the ...
0
votes
1answer
39 views

TouchJSON serializing a structure of dictionaries and arrays

iPhone development question (ObjectiveC). I'm trying to use TouchJSON library, and having some trouble serialising to JSON. I have ARC switched on so I'm using the ARC branch from github. I'm trying ...
0
votes
1answer
25 views

Cannot access a dictionary created with TouchJSON

I am trying to use TouchJSON and here is what I have done to test it : NSString *jsonString = @"{\"firtname\": \"Matthieu\",\"lastname\": \"Ravey\",\"age\": 22}"; NSData *jsonData = [jsonString ...
0
votes
0answers
82 views

Json Object to Sqlite Database in ios

I want to push the fetched data of json file to database. Can anyone suggests some solution?
0
votes
3answers
411 views

TOUCHJSON Serialization from NSDictionary

I've read through the questions and answers related to TouchJSON serialization and I'm still not getting it to work. I create an NSDictionary with sample data and used the JSONTouch serializer to ...
0
votes
2answers
129 views

How do I get properties out of NSDictionary?

I have a webservice that returns data to my client application in JSON. I am using TouchJson to then deserialize this data into a NSDictionary. Great. The dictionary contains a key, "results" and ...
0
votes
1answer
76 views

TouchJSON - Why I get lots of \U**** in the results of parsing?

I am using TouchJSON to parse a JSON data. In the results, the strings in the array are all in \U** format. Yes, they are meant to be other languages than English. Why TouchJSON can't just ...
0
votes
0answers
134 views

memory leak that appears to be in touchJSON

Here's a leak problem that I'm having trouble with. Most of this code is just here for context so you can see that the "response" NSData object is not what's leaking. If I drill down into the ...
0
votes
1answer
488 views

iphone objective-c : string to NSData conversion for json deserialization

I receive json from a webservice into a NSMutableData. That gets converted into a NSDictionary using TouchJson. NSDictionary *dictionary = [[CJSONDeserializer deserializer] ...
0
votes
1answer
187 views

JSON Parse objective c

I´ve got the next json code: { "person_1":{ "name" :"person", "pictures":[ {"images":{ "picture_1": "url1", ...
0
votes
2answers
406 views

How do you parse a JSON array with TouchJSON?

I'm using TouchJSON. Made a call to my Rails app to fetch all "posts" at localhost:3000/posts.json. This returns a JSON array, surrounded by square brackets. I'm currently set up to convert the ...
0
votes
2answers
572 views

'NSDictionary' may not respond to '+dictionaryWithJSONString'… when using TouchJSON

I'm really new to Cocoa development, so please be kind. Anyway, I'm trying to deserialize a JSON string I'm sending from my server through TouchJSON, but I'm getting a compiler warning of ...
0
votes
1answer
1k views

Using AdMob in MonoTouch Projects with iOS SDK 4.2

Using AdMob in MonoTouch Projects with iOS SDK 4.2 We have a test project to try using AdMob with MonoTouch. The setup is as follows: We created a (fat) TouchJSON library as described in post ...
0
votes
1answer
129 views

TouchXML parse response with unquoted keys

Is there a way to use TouchXML to parse json in which the key are not quoted, like this: { foo:"bar" } I'm trying to parse the response from a webservice (google), so simply fixing the JSON code to ...
0
votes
1answer
276 views

Dealing with <'null>' values in TouchJSON

I am deserializing some JSON using the TouchJSON framework. The array of dictionaries that comes from the parsing is used to populate a UITableView. There is a chance that some of the values in the ...
0
votes
1answer
250 views

TouchJSON with basic HTTP authentication

I was wondering if anyone has the TouchJSON framework working in conjunction with basic apache HTTP authentication. Essentially the directory of the RESTful webservice that I am calling is secured ...
0
votes
1answer
148 views

TouchJSON not working to retrieve data on iPhone

I am trying to use TouchJSON to retrieve data from a php page with json output. I have followed the same steps as an example project I downloaded from and it still isn't working. When I select the ...
0
votes
2answers
660 views

Deserialize an object from an NSDictionary from TouchJSON?

I can't seem to work out how to get a Dictionary representing an object from the dictionary that TouchJSON returns. For example: If I use the JSON in the format here: ...
0
votes
1answer
297 views

TouchJSON and SOAP

How can i make a SOAP call using TouchJson? it just work fine with REST call.
0
votes
3answers
3k views

Parse JSON array

I fetch a JSON array from a web service with touchJSON. Which looks like this: [{"icecream": {"title": "Banana"}}, {"icecream": {"title": "Strawberry"}}] I'm not able to parse this into a ...