How can I sort an array filled with [UIFont familyNames] into alphabetical order?

link|improve this question

80% accept rate
1  
Great question. – Jackelope11 Jun 1 '11 at 2:32
feedback

1 Answer

up vote 134 down vote accepted

Take a look here:

The simplest approach is, to provide a sort selector (see the link for details):

sortedArray = [anArray sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
link|improve this answer
Documentation link is outdated, code sample isn't really enough to actually sort the array. localizedCaseInsensitiveCompare: needs to be defined somehow. – Jasconius Dec 20 '10 at 15:40
9  
I updated the link. Thanks for pointing that out. localizedCaseInsensitiveCompare: is a method of NSString and should be sufficient to sort an array of strings. – weichsel Dec 20 '10 at 16:37
Thank you, this is a very useful answer. – Jackelope11 Jun 1 '11 at 2:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.