views:

68

answers:

2

i want to sort an array in such a way that numerals come after alphabets

+1  A: 

You may want -sortedArrayUsingFunction:context: with a custom function which does your custom comparison.

See this document for more information on sorting/filtering arrays.

jtbandes
+2  A: 

You will probably want to use the
sortedArrayUsingSelector: method.

Mark Bessey