Possible Duplicate:
How to sort NSMutableArray in objective c
i want to sort the NSMutablearray which contain the value 434,34,4,45
i am using this code for sorting:
[arrayfinale sortUsingSelector:@selector(compare:)];
but it return:
45,4,34,433
but i want
4,34,45,433
can anybody help me to solve this problem