Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As a learning experience, I want to make an iphone application that calls a webserver/webservice, retrieves a JSON response, and uses that response to populate the rows of a UITableView (assuming it converts the JSON into an NSArray first).

Anyone know of anything that might be useful?

share|improve this question
2  
Break it into pieces and you can find plenty of tutorials. There are tutorials for how to make a web request, there are tools for JSON parsing (I recommend code.google.com/p/json-framework), there are probably hundreds of tutorials on using a UITableView. I can't give anything specific to your one case, but if you have a more specific question, you can get more specific help. – Rob Lourens Apr 28 '11 at 3:00

8 Answers

up vote 104 down vote accepted

You will love this framework.

And you will love this tool.

For learning about JSON you might like this resource.

And you'll probably love this tutorial.

share|improve this answer
You're absolutely right about me loving that too @icnivad, thanks a lot for the lead this is very useful. – Casey Flynn Apr 28 '11 at 3:51
. Tutorial you mentioned requires DMG file but I could not find any DMG file on Link you mentioned for framework. that link directs on github and contains a zip file with various classes and examples but I dont understand which part I need to insert in my project. Can you please help me? – alekhine Nov 4 '11 at 9:35
2  
Yeah, that project moved to github. Get it here: github.com/stig/json-framework. – Todd Hopkinson Nov 4 '11 at 19:54
Thats great help! – Abhishek Bedi Dec 22 '11 at 7:04
You'll also probably love hurl.it – CaspNZ Mar 26 '12 at 7:49
show 2 more comments

As of iOS 5.0 Apple provides the NSJSONSerialization class "to convert JSON to Foundation objects and convert Foundation objects to JSON". No external frameworks to incorporate and according to benchmarks its performance is quite good, significantly better than SBJSON.

share|improve this answer
This words great as long as one is not planning to support iOS 4 and earlier versions. – Sanjay Chaudhry Jun 7 '12 at 20:55
10  
Since It's now 2012 and iOS6 is imminent - that's more likely to be the case. – Abizern Jul 24 '12 at 9:26

try out with this fastest JSON framework JSONKit. it's faster than normal JSON framework.

share|improve this answer
You're right, this is lightning fast! – IvanFioravanti Jan 14 '12 at 2:43

This is the tutorial I used to get to darrinm's answer. It's updated for ios5/6 and really easy. When I'm popular enough I'll delete this and add it as a comment to his answer.

http://www.raywenderlich.com/5492/working-with-json-in-ios-5

http://www.touch-code-magazine.com/tutorial-fetch-and-parse-json-in-ios6/

share|improve this answer

You can try https://github.com/TouchCode/TouchJSON Nice framework

share|improve this answer
fyi: touchjson is deprecated – hanumanDev Feb 19 at 15:45

Here's a link to my tutorial, which walks you through :

  • creating a JSON WCF Web Service from scratch (and the problems you'll want to avoid)
  • adapting it to read/write SQL Server data
  • getting an iOS 6 app to use the JSON servies.
  • using the JSON web services with JavaScript

http://mikesknowledgebase.com/pages/Services/WebServices-Page1.htm

All source code is provided, free of charge. Enjoy.

share|improve this answer
SBJSON *parser2 = [[SBJSON alloc] init];

NSString *url_str2=[NSString stringWithFormat:@"Example APi Here"];

url_str2 = [url_str2 stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

NSURLRequest *request2 =[NSURLRequest requestWithURL:[NSURL URLWithString:url_str2]];

NSData *response1 = [NSURLConnection sendSynchronousRequest:request2   returningResponse:nil error:nil];

NSString *json_string2 = [[NSString alloc] initWithData:response1 encoding:NSUTF8StringEncoding];

NSDictionary *statuses3 = [parser2 objectWithString:json_string2 error:nil];

 NSArray *news_array=[[statuses3 objectForKey:@"sold_list"] valueForKey:@"list"];

    for(NSDictionary *news in news_array)
{

    @try {
        [title_arr addObject:[news valueForKey:@"gtitle"]];    //values Add to title array

    }
    @catch (NSException *exception) {

        [title_arr addObject:[NSString stringWithFormat:@""]];
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.