Re: Sorting an NSMutableArray

2008-12-20 Thread Rob Rix
See -sortUsingFunction:context: in NSMutableArray’s documentation. As Ricky Sharp has already mentioned, there’s also -sortUsingSelector:, however if you’re comparing partly with external data you might like having the void * context provided by this method. Sincerely, Rob On 20-Dec-08, at

Re: Sorting an NSMutableArray

2008-12-20 Thread Ricky Sharp
On Dec 20, 2008, at 6:15 AM, Jacob Rhoden wrote: How do you sort an NSMutableArray, when the difference between the two objects is determined by information not contained completely within the objects themselves. ie in Java you can implement a Comparator that takes two objects to compare t

Sorting an NSMutableArray

2008-12-20 Thread Jacob Rhoden
How do you sort an NSMutableArray, when the difference between the two objects is determined by information not contained completely within the objects themselves. ie in Java you can implement a Comparator that takes two objects to compare then. Is this similar in Cocoa? ie in this case I need