How can an array of objects be sorted by comparing one of their properties (NSString *) to objects (already sorted) in another array of (NSString *)s?
I fill an array of e.g. Person objects in the order a number of threads happen to complete in. I would then like to compare each Person.name against an array of name objects that is already ordered. The result would be the Person array sorted in the same order as the names array by the person.name property.