Skip to content

Instantly share code, notes, and snippets.

@wisaruthk
Last active August 29, 2015 14:08
Show Gist options
  • Save wisaruthk/8059120e2c9cada633ed to your computer and use it in GitHub Desktop.
Save wisaruthk/8059120e2c9cada633ed to your computer and use it in GitHub Desktop.
Order item in NSMutableArray by dictionary
-(void)sortMyGroupArray:(NSMutableArray *)items{
NSSortDescriptor *sd = [[NSSortDescriptor alloc] initWithKey:@"groupName" ascending:YES];
[items sortUsingDescriptors:@[sd]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment