I have an object with a dictionary property. I want to sort by a value in the dictionary, lets say,
myObject.dictionary[@"sort"]
I have an array of these objects. Is it possible to create an NSSortDescriptor to sort by that value? Like,
[NSSortDescriptor sortDescriptorWithKey:@"dictionary['sort']" ascending:YES]