Working with Json, how can I "NSlog" only the title in this code:
NSDictionary *item = [tableData objectAtIndex:[indexPath row]];
// Set text on textLabel
[[cell textLabel] setText:[item objectForKey:@"title"]];
// Set text on detailTextLabel
[[cell detailTextLabel] setText:[item objectForKey:@"description"]];
Something like NSlog(@"%@", title);
?
Thanks!