Hi,
I have array of strings in following format 5_5_a, 10_10_a, 0_0_a 1_1_a etc. I want to sort them in ascending/descending order. When I use sortedArrayUsingSelector:@selector(compare:) I get 0_0_a,10_10_a,1_1_a,5_5_a. I tried to parse each string into 5 5 a chunks and cast to a int then put that first element into array with addObject:myInteger but i got warnings when compiling. Please let me know if I am missing something. Thanks Mark