Here is a example of what I want to do with NSArray contains NSNumber.
This is the NSArray "score" I want to edit.
score[0]=30,
score[1]=10,
score[2]=20
score[3]=0Sort the Array in ascending-order
score[0]=30 //[0]This number shows the index before sorting the array
score[1]=20 //[2]
score[2]=10 //[1]
score[3]=0 //[3]Edit the Array(In this case,4th gives 1st 10 points,and 3rd gives 2nd 5points)
score[0]=40 //[0]
score[1]=25 //[2]
score[2]=5 //[1]
score[3]=-10 //[3]And sort the array back they were.
score[0]=40
score[1]=5
score[2]=25
score[3]=-10I have a problem with no.4 method in the list.Can someone give me some idea with this?
Thanks in advance.
-5forscore[3]was a typo since it's clearly supposed to be-10. Please confirm that my changes are correct or let me know if I was wrong. As my wife will attest (far too frequently for my liking), that happens occasionally :-) – paxdiablo Mar 6 '12 at 5:40