Reputation: 26752
Is it possible to order an NSMutableArray where it's values are NSStrings? I'm looking to order alphabetically. Thanks
Upvotes: 0
Views: 245
Reputation: 170839
This should work:
NSMutableArray* stringsArray;
...
[stringsArray sortUsingSelector:@selector(compare:)];
Upvotes: 4