I want to sort objects with different descriptors keys).
The problem:
I have two arrays with populated with objects of different classes. and The two classes do not share a common attribute to use as a sort descriptor.
I want to sort the arrays alphabetically, and return only one array containing all the objects.
- Array1 = with objects [A Class]
- sorted by "name"
- Array2 = with objects [B Class]
- sorted by "title"
FinalArray => sort (again) alphabetically with all object's of Array's (1,2)