Skip to content

Instantly share code, notes, and snippets.

@hlxwell
Created April 4, 2013 09:02
Show Gist options
  • Save hlxwell/5308907 to your computer and use it in GitHub Desktop.
Save hlxwell/5308907 to your computer and use it in GitHub Desktop.
CoreData Sort through Relationship
NSSortDescriptor *sortNameDescriptor = [[NSSortDescriptor alloc] initWithKey:@"firstName" ascending:YES];
[company.workers sortedArrayUsingDescriptors:@[sortNameDescriptor]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment