Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to sort NSArray of UIImageView according their frame?

i try for NSSortDescriptor but when i write key=@"frame" unrecognized selector error occur. please tell me how to sort my array.

thanks in advance.

share|improve this question

2 Answers

up vote 1 down vote accepted

You can always write your own comparator function and define custom sorting behavior by using NSArray sortedArrayUsingSelector method

share|improve this answer

You can use this to sort that array http://stackoverflow.com/questions/2553894/sorting-nsarray-and-returning-nsarray

share|improve this answer
but compare: use for only nsstring,nsnumber,nsdata ect support it will not work for CGPoint – priyanka Jul 31 '10 at 7:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.