I have a list of strings in an NSMutableArray, and I want to sort them into alphabetical order before displaying them in my table view.
NSMutableArray
How can I do tha
For me this worked....
areas = [areas sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
Here areas is NSArray. I hope it helps someone.
NSArray