I have an NSArray with values that I am pulling from an NSDictionary using a selector to sort with which has the following values:
- John
- Brian
- Alex ....
- Dave
When I use the code below, since they are being compared as strings, the list comes back with:
NSArray *array = [[[self myDictionary] allValues] sortedArrayUsingSelector:@selector(compare:)];
- John
- Dave
- Brian ...
How can I get these values to sort correctly where they are in order 1, 2, 3, etc.? I've looked at several different examples for sorting, but have not been able to find an example like mine. I must also mention that I'm new to objective-c and iOS. Any help would be greatly appreciated.
Thanks!