我有两个NSArray
对象,我想对它们进行相同的排序。一个包含NSString
对象,另一个包含自定义Attribute
对象。这是我的“关键” NSArray 的样子:
// The master order
NSArray *stringOrder = [NSArray arrayWithObjects:@"12", @"10", @"2", nil];
带有自定义对象的 NSArray:
// The array of custom Attribute objects that I want sorted by the stringOrder array
NSMutableArray *items = [[NSMutableArray alloc] init];
Attribute *attribute = nil;
attribute = [[Attribute alloc] init];
attribute.assetID = @"10";
[items addObject:attribute];
attribute = [[Attribute alloc] init];
attribute.assetID = @"12";
[items addObject:attribute];
attribute = [[Attribute alloc] init];
attribute.assetID = @"2";
[items addObject:attribute];
所以,我想做的是使用数组来确定自定义对象数组stringOrder
的排序。items
我怎样才能做到这一点?