Skip to content

Instantly share code, notes, and snippets.

@mbcrump
Created August 15, 2013 17:16
Show Gist options
  • Select an option

  • Save mbcrump/6242654 to your computer and use it in GitHub Desktop.

Select an option

Save mbcrump/6242654 to your computer and use it in GitHub Desktop.
Modern Syntax
//OLD WAY
//NSString *articleTitle = [[feeds objectAtIndex:indexPath.row] objectForKey: @"title"];
//NEW WAY
NSString *articleTitle = feeds [indexPath.row] [@"title"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment