Skip to content

Instantly share code, notes, and snippets.

@kentcdodds
Created October 23, 2013 22:35
Show Gist options
  • Save kentcdodds/7128046 to your computer and use it in GitHub Desktop.
Save kentcdodds/7128046 to your computer and use it in GitHub Desktop.
Sorting Rook Cards. Because you need to do this all day long.
-(NSMutableArray *)sortCards:(NSMutableArray *)cards {
SEL selector = @selector(compareCard:);
NSArray *sortedArray = [cards sortedArrayUsingSelector:selector];
return [sortedArray mutableCopy];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment