1

私は多くのサブ辞書を持っている次の辞書を持っています。isChanged = 1を使用して親辞書からオブジェクトを削除するにはどうすればよいNSPredicateですか?

{
    "0_496447097042228" =     {
        cellHeight = 437;
        isChanged = 1;
    };
    "100000019882803_193629104095337" =     {
        cellHeight = 145;
        isChanged = 0;
    };
    "100002140902243_561833243831980" =     {
        cellHeight = 114;
        isChanged = 1;
    };
    "100004324964792_129813607172804" =     {
        cellHeight = 112;
        isChanged = 0;
    };
    "100004324964792_129818217172343" =     {
        cellHeight = 127;
        isChanged = 0;
    };
    "100004324964792_129835247170640" =     {
        cellHeight = 127;
        isChanged = 1;
    };
}
4

3 に答える 3

4

NSPredicate を使用する簡単な代替手段として、NSDictionary の組み込みを使用できます。keysOfEntriesPassingTest: この回答では、「isChanged」が NSString であり、値 0 または 1 が NSNumber であると想定しています。

NSSet *theSet = [dict keysOfEntriesPassingTest:^(id key, id obj, BOOL *stop) {
    return [obj[@"isChanged"] isEqualToNumber: @1];
}];

返されるセットは、テストに合格したキーのリストです。そこから、次のものに一致するものをすべて削除できます。

[dict removeObjectsForKeys:[theSet allObjects]];

于 2012-11-24T16:24:00.363 に答える
2

私は次の方法で私の問題を解決しました:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"isChanged == %d", 1];

NSArray *allObjs = [parentDict.allValues filteredArrayUsingPredicate:predicate];

[allObjs enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
    NSMutableArray *keys = [[NSMutableArray alloc] initWithCapacity:0];
    [keys setArray:[parentDict allKeysForObject:obj]];
    [parentDict removeObjectsForKeys:keys];
    [keys release];
}];
于 2012-11-29T05:26:49.820 に答える
0

NSPredicateを使用して選択したカテゴリのデータを削除できるよりも辞書の配列がある場合

ここにコードがあります

NSString *selectedCategory = @"1";

//filter array by category using predicate
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"isChanged == %@", selectedCategory];

NSArray *filteredArray = [yourAry filteredArrayUsingPredicate:predicate];

[yourAry removeObject:[filteredArray objectAtIndex:0]];  

しかし、あなたの問題では、データは配列ではなく、辞書にあります

データはこの形式である必要があります

(
 {
     cellHeight = 437;
     isChanged = 1;
 },
 {
     cellHeight = 145;
     isChanged = 0;
 },
 {
     cellHeight = 114;
     isChanged = 1;
 }
 )
于 2012-11-24T16:04:19.470 に答える