/p120731_JsonParse

Sample project which parse JSON data from Web site. This project make table with JSON data.

Primary LanguageObjective-C

#Sample project of JSON parsing

Sample project which parse JSON data from Web site. This project make table with JSON data.

Screen Shot

You can see how useful JSON is in iOS. For example, the code below take datas from JSON. This is wonderful !

cell.textLabel.text = 
[[_JSON valueForKeyPath:@"rss.channel.item.title"] objectAtIndex:indexPath.row];
cell.detailTextLabel.text =
[[_JSON valueForKeyPath:@"rss.channel.item.description"] objectAtIndex:indexPath.row];