Parsing JSON before iOS5 [closed] - ios

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Since it seems that NSJSONSerialization class is only available in iOS 5.0+ (NSJSONSerialization Class Reference), is there another option to parse JSON objects prior that version?
Thanks

Have a look at JSONKit.
I've used it prior to iOS5 and it has better performance, and is easier to use than SBJSON.

SBJSON is great option, I have used in it two app store apps.

There are many options on github, for example SBJSON.

There was no JSON support prior to iOS 5. You can use third party code from here:
https://github.com/johnezang/JSONKit

Related

What is the best QR code reader to implement in iOs? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I want to implement a QR code reader in my iPhone application .
I have used the Zxing APIs once, but i think it's too much for a simple thing. Can I use any other library for the same purpose?
thanks!
Try this ZBar:
and you can get tutorial from here.
If you want example project I took from here.
try it out, it is simple one.
ZBar SDK ...easy to use and open source
https://github.com/arciem/ZBarSDK

Can somebody suggest me library for sending Get, Post and Put requests to server? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am very new to iOS (just started), and need to implement requests to REST web service (Get, Post, Put). Can somebody suggest me library for this ? (I found SIKHttpRequest but I cannot find inside demo to choose between Get, Post and Put. I am using ios 6)
AFNetworking is one of the best open-source communication libs.
https://github.com/AFNetworking/AFNetworking
RestKit is there. Think of it also.
ASI is a great library asi-http-request . Also see here for an opinion on it.

What would be the best way to load data from the internet into ios app? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
i am looking at making an app for a cinema chain. i have experience in objective c but have not done may for loading data from the internet.
what i was asking is what would be the best way to load data into the app from the internet. the data will be stuff like images and names and times for the movies?
Thanks
The best way is JSON. For movies you can use http://www.omdbapi.com/. Is an unofficial api for IMDB.
The JSON response from the api can be consumed using NSURLConnection you can check apple's documentation or you can simply use RestKit.

Facebook API iOS 5.1 sample? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
There is some tutorial or sample of iOS 5.1 integration with Facebook? I've tried the one on Facebook developer site, but I get error on retaining the properties https://developers.facebook.com/docs/mobile/ios/build/. I'm really fresh on IOS, so if you can help I would be grateful!
You're most likely getting an error using retain because when you created your new project Xcode asked you if you would like to use Automatic Reference Counting (ARC) and you selected the check box (I think it is selected by default). ARC disallows manual memory management calls such as retain. Upload the line in question and I'll edit this post to show you how to fix it.

Integrate twitter in a BlackBerry application [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I want to integrate Twitter in my BlackBerry application.
Is there an api or documentation?
Take a look at the jibjib library - based on J2ME it should work on BlackBerry.
same problem that libraries gives a "tunnel failed" exception when you are using the BIS network...
I achieve the Blackberry-twitter implementation based on this post
http://supportforums.blackberry.com/t5/Java-Development/Twitter-Implementation-in-Blackberry/td-p/548578
Hello follow this: Integrating twitter in a blackberry application work flawlessly for me. It provides the basic needed functionalities like tweet, follow, unfollow...
Hope this helps..
Cheers!

Resources