How can I sort an array filled with [UIFont familyNames] into alphabetical order?
Another easy method to sort an array of strings consists by using the NSString description property this way:
NSSortDescriptor *valueDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"description" ascending:YES];
arrayOfSortedStrings = [arrayOfNotSortedStrings sortedArrayUsingDescriptors:@[valueDescriptor]];