I'm new to iOS development. What I'm trying to do is parse a JSON webservice (see sample output below). I would like to bind the said output to a UITableView. Could you show me the sample code on how to do this. I'm using Xcode 3 with 4.3 sdk. Thank you very much!
[{
"event_id": "30",
"bar_name": "Area 05 Superclub",
"event_name": "test10",
"date": "Dec 05, 2012 10:00 AM"
}, {
"event_id": "27",
"bar_name": "Area 05 Superclub",
"event_name": "test7",
"date": "Dec 02, 2012 10:00 AM"
}, {
"event_id": "28",
"bar_name": "Area 05 Superclub",
"event_name": "test8",
"date": "Dec 03, 2012 10:00 AM"
}, {
"event_id": "29",
"bar_name": "Area 05 Superclub",
"event_name": "test9",
"date": "Dec 04, 2012 10:00 AM"
}]
Ok guys, here's may intial code, (care of Tim Stullich, thanks man!). I was able to pull da data from webservice. My next problem is how to bind it to a UITableView. Hope you could help me again.
-(void)loadData{
// Create new SBJSON parser object
SBJsonParser *parser = [[SBJsonParser alloc] init];
// Prepare URL request to download statuses from Twitter
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http:xxx/gl_getEventsInformation.php"]];
// Perform request and get JSON back as a NSData object
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
// Get JSON as a NSString from NSData response
NSString *json_string = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
// parse the JSON response into an object
// Here we're using NSArray since we're parsing an array of JSON status objects
NSArray *statuses = [parser objectWithString:json_string error:nil];
// Each element in statuses is a single status
// represented as a NSDictionary
for (NSDictionary *status in statuses)
{ NSLog(@"%@ - %@ - %@ - %@", [status objectForKey:@"event_id"],[status objectForKey:@"bar_name"],[status objectForKey:@"event_name"],[status objectForKey:@"date"]);}
}