I'm have a NSArrayController (A) bind it to another NSArrayController (B) and I'm trying to sort the NSArrayController (B) but is not working.
Here is my code:
NSSortDescriptor *bSortDescriptor = [[NSSortDescriptor alloc]
initWithKey:@"name" ascending:YES];
self.arrayControllerB.sortDescriptors = @[bSortDescriptor];
Does any of you knows why the NSSortDescriptor is not working?
I'll really appreciate your help.