i want to sort an array in such a way that numer开发者_运维知识库als come after alphabets
You will probably want to use the
sortedArrayUsingSelector:
method.
You may want -sortedArrayUsingFunction:context:
with a custom function which does your custom comparison.
See this document for more information on sorting/filtering arrays.
精彩评论