/ Published in: Objective C
Snippet from a question I answered in StackOverflow.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
NSSortDescriptor *dateSortDescriptor = [[[NSSortDescriptor alloc] initWithKey:@"issue_id" ascending:YES selector:@selector(compare:)] autorelease];
URL: http://stackoverflow.com/questions/3503141/nsdictionary-filtering-and-sorting/3503217#3503217