Skip to content

Instantly share code, notes, and snippets.

@mbcrump
Created August 15, 2013 17:16
Show Gist options
  • Save mbcrump/6242654 to your computer and use it in GitHub Desktop.
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"];