我正在尝试遍历我的数组并根据数组中对象的名称属性查找重复的对象。一旦找到重复项,我需要组合这些对象,名称和单位值保持不变,我只想将数量值加在一起。此时我想删除两个重复项并将新对象添加到数组中。
如果它的两个难以删除两个对象并添加另一个对象(可能与索引混淆?),那么可以将新对象添加到过滤数组中,只要在未找到重复项时也将其添加到该数组中。所以新数组将包含我以前的所有值,重复值结合数量。
到目前为止我有这个:
NSMutableSet* existingNames = [NSMutableSet set];
NSMutableArray* filteredArray = [NSMutableArray array];
for (id object in ingredientsArray)
{
if (![existingNames containsObject:[object name]])
{
[existingNames addObject:[object name]];
NSLog(@"%@", @"DUPLICATE FOUND");
//create new object to store the new info in.
ingredient *info = [[ingredient alloc] initWithname:[object name] quantity:[/* How do I add the quanitity values of the two objects that are duplicates here? */] unit:[object unit]];
//add this to filtered array.
[filteredArray addObject:object];
//remove object from array.
[ingredientsArray removeObject:object];
}
}
谢谢