karthikjanagiraman / p120731_JsonParse

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#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];

About

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