0

我有一个NSArray完整的NSDictionary对象。该结构是从数据库构建的。我正在构建一个仅在调试时包含和执行的验证功能。这个想法是确保所有需要的文件实际上都包括在内,并且不包括任何额外的文件。

基于这个问题,我尝试使用 aNSPredicate但它将 thr 目录中的每个文件标记为“文件不在数据库中”。

我究竟做错了什么?

KEY_DFILE#定义为@"dFilename".

#ifdef DEBUG
- (void)checkItems
{
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSLog(@"-------- Database / File Check --------");
    for (NSDictionary* item in self.allItmes)
    {
        // ansi items
        if ([[item objectForKey:KEY_TYPE] isEqualToString:@"ansi"])
        {
            // Make sure the datafile exists
            NSString* path = [[NSBundle mainBundle] pathForResource:[item objectForKey: KEY_DFILE] ofType:nil inDirectory:@"ansi"];
            if (![fileManager fileExistsAtPath:path])
                NSLog(@"Can't find file: %@", path);
        }
    }

    NSString *dir = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"ansi"];
    NSDirectoryEnumerator* en = [fileManager enumeratorAtPath:dir];
    NSString* file;
    while (file = [en nextObject])
    {
        NSPredicate *p = [NSPredicate predicateWithFormat:@"%@ == %@", KEY_DFILE, file];
        NSArray *matchedDicts = [self.allItmes filteredArrayUsingPredicate:p];
        if ([matchedDicts count] == 0)
        {
            NSLog(@"File not in Database: %@", file);
        }
        else if ([matchedDicts count] > 1)
        {
            NSLog(@"File in Database more than once: %@", file);
        }
    }
    NSLog(@"---------------------------------------");
}
#endif
4

2 回答 2

1

I think you want your predicate format to be "%K == %@".

于 2012-04-07T21:35:21.687 回答
0

更改此行:

NSPredicate *p = [NSPredicate predicateWithFormat:@"%@ == %@", KEY_DFILE, file];

对此:

NSPredicate *p = [NSPredicate predicateWithFormat:@"%K == %@", KEY_DFILE, file];

%K 表示参数是动态属性名称而不是字符串(因此它不引用它)。

于 2012-04-07T21:37:26.570 回答