Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Eridana/92bd0cc8dc0e88cb3773 to your computer and use it in GitHub Desktop.

Select an option

Save Eridana/92bd0cc8dc0e88cb3773 to your computer and use it in GitHub Desktop.

Revisions

  1. Eridana created this gist Mar 13, 2015.
    2 changes: 2 additions & 0 deletions Sorting array of custon objects by date property
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,2 @@
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"thisIsTheNameOfYourDateProperty" ascending:NO];
    NSArray *orderedArray = [arrayOfCustomObjects sortedArrayUsingDescriptors:[NSArray arrayWithObject:sortDescriptor]];