1

辞書オブジェクトを含む NSArray があります。配列の構造は次のようになります。

Data = (
    {
    Date = "07/11/2013";
    LotNumber = 1;
    PartyName = "Gaurav Wadhwani";
    Quantity = 500;
},
    {
    Date = "07/11/2013";
    LotNumber = 2;
    PartyName = "Gaurav Wadhwani";
    Quantity = 600;
}
)

LotNumberユーザーが、PartyNameまたはを検索できるようにする検索および表示コントローラーを使用していますDate。Scope タイトルと検索バーの使い方を知っています。ただし、NSPredicate を使用して正しい結果を得ることができません。これは私のコードです:

NSString *searchParameter = @"LotNumber";
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"%K contains[cd] %@", searchParameter, searchText];
    filteredGoodsArray = [NSMutableArray arrayWithArray:[data filteredArrayUsingPredicate:predicate]];
NSLog(@"Filtered Array = %@", filteredGoodsArray);

フィルター処理された配列では常に空白の結果が得られます。ここで何が問題なのか教えていただけますか?

ありがとうございました。

4

1 に答える 1

2

-predicateWithBlock:を使用してdataArrayをフィルタリングできます

- (NSArray *)filterArray:(NSArray *)dataArray WithSearchText:(NSString *)searchText ScopeTitle:(NSString *)scopeTitle {
    NSPredicate *predicate = [NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) {
        //this is the dictionary in your dataArray
        NSDictionary *dictionary = (NSDictionary *)evaluatedObject;
        NSString *key = @"";

        //get key based on your selected scope
        if ([scopeTitle isEqualToString:@"Lot"])
            key = @"LotNumber";
        else if ([scopeTitle isEqualToString:@"Party"])
            key = @"PartyName";

        //grab the value from the dictionary with the corresponding key
        NSString *value = [dictionary objectForKey:key];

        //if the value contains your searchText return YES to add the object to the filtered array
        //if not it returns NO to filter it out of the array
        return [value rangeOfString:searchText options:NSCaseInsensitiveSearch].location != NSNotFound;
    }];

    //filter your dataArray using the predicate
    return [dataArray filteredArrayUsingPredicate:predicate];
}
于 2014-05-05T06:45:04.353 に答える