如何在添加新值之前检查数组是否具有相同的对象值



我正在从字典中获取数据。它运行良好,并将数据存储在 NSMutableArray 中,我希望在将对象添加到需要之前,确保 Array 不包含具有相同名称和类型的相同对象。请看下文。

在插入对象之前,我们应该检查它是否不包含具有类型和名称的对象,如果包含不需要插入的对象。

NSArray *resultDic = [result1 objectForKey:@"results"];
for (int i = 0; i<[resultDic count]; i++) {
    id item = [resultDic objectAtIndex:i];
    NSDictionary *jsonDict = (NSDictionary *) item;
    GetData  *theObject =[[GetData alloc] init];
    NSString*error = [jsonDict valueForKey:@"error"];
    if(![error isEqualToString:@"No Record Found."])
    {

        [theObject setVaccineID:[jsonDict valueForKey:@"ID"]];
        [theObject setVaccineName:[jsonDict valueForKey:@"Name"]];
        [theObject setVaccinationType:[jsonDict valueForKey:@"Type"]];
        [theObject setVaccineType:[jsonDict valueForKey:@"VType"]];
        [theObject setFarmName:[jsonDict valueForKey:@"FName"]];
        [theObject setDay:[jsonDict valueForKey:@"Day"]];
        [theObject setAddedDateTime:[jsonDict valueForKey:@"DateTime"]];

        [appDelegate.dataArray addObject:theObject];

    }
}

一个通用的解决方案是教你的GetData对象如何将自己与其他对象进行比较。 如果可以比较它们,那么就很容易确定匹配项是否在任何集合中(您可能还想在其他上下文中比较它们(。 通过实施 isEqual: 来执行此操作。 这可能看起来像这样:

// in GetData.m
- (BOOL)isEqual:(id)object {
    if ([object isKindOfClass:[GetData self]]) {
        // assuming that the object is fully characterized by it's ID
        return [self.vaccineId isEqual:((GetData *)object).vaccineId];
    }
    else {
        return NO;
    }
}
// have the hash value operate on the same characteristics as isEqual
- (NSUInteger)hash {
    return [self.vaccineId hash];
}

完成此操作后,您可以利用NSArray的containsObject:

// ...
if(![appDelegate.dataArray containsObject:theObject] && ![error isEqualToString:@"No Record Found."])
// ...

相关内容

  • 没有找到相关文章

最新更新