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
2009-11-17 06:48:02
+2
A:
You will probably want to use the
sortedArrayUsingSelector:
method.
Mark Bessey
2009-11-17 06:57:25