0

我有一个这样的数组

NSMutableArray *level1;
NSMutableArray *level2;
NSMutableArray *level3;

self.questionSections=[[NSArray alloc] initWithObjects:@"Level 1",@"Level 2",@"Level 3", nil];

level1=[[NSMutableArray alloc] init];
level2=[[NSMutableArray alloc] init];
level3=[[NSMutableArray alloc] init];

[level1 addObject:[[NSDictionary alloc] initWithObjectsAndKeys:
                   @"What is the opposite of up?",@"name",
                   @"101q.png",@"questionpicture",
                   nil]];

[level1 addObject:[[NSDictionary alloc] initWithObjectsAndKeys:
                   @"What is the opposite of front?",@"name",
                   @"102q.png",@"questionpicture",
                   nil]];


[level2 addObject:[[NSDictionary alloc] initWithObjectsAndKeys:
                   @"Name a common pet?",@"name",
                   @"201q.png",@"questionpicture",
                   nil]];


[level2 addObject:[[NSDictionary alloc] initWithObjectsAndKeys:
                   @"Name a common bird?",@"name",
                   @"202q.png",@"questionpicture",
                   nil]];


[level3 addObject:[[NSDictionary alloc] initWithObjectsAndKeys:
                   @"List 3 rooms in your house?",@"name",
                   @"301q.png",@"questionpicture",
                   nil]];

self.questionData=[[NSArray alloc] initWithObjects:level1,level2,level3, nil];

我想搜索它。我正在尝试这个但无处可去

NSPredicate *resultPredicate=[NSPredicate predicateWithFormat:@"name CONTAINS 'the'"];

NSLog(@"%@",resultPredicate);
NSLog(@"%@",self.questionData);

self.searchResults=[self.questionData  filteredArrayUsingPredicate:resultPredicate];

NSLog(@"%@",self.searchResults);

resultPredicate看起来不错“名称包含'the'”

self.questionData看起来不错

self.searchResults只是 ( )

任何可以提供帮助的想法都会很棒。谢谢。

4

2 回答 2

5

我使用子查询来解决这个问题

 NSArray *questionData=[[NSArray alloc] initWithObjects:level1,level2,level3, nil];

 NSPredicate *resultPredicate=[NSPredicate predicateWithFormat:@"SUBQUERY(name, $content, $content CONTAINS %@).@count > 0", @"the"];

 NSArray *searchResults=[questionData  filteredArrayUsingPredicate:resultPredicate];

 NSLog(@"%@",searchResults);

结果::

(
    (
            {
        name = "What is the opposite of up?";
        questionpicture = "101q.png";
    },
            {
        name = "What is the opposite of front?";
        questionpicture = "102q.png";
    }
)

)

于 2013-07-18T12:47:35.910 回答
0

这里有数组的问题。

(
        (
                {
            name = "What is the opposite of up?";
            questionpicture = "101q.png";
        },
                {
            name = "What is the opposite of front?";
            questionpicture = "102q.png";
        }
    ),
        (
                {
            name = "Name a common pet?";
            questionpicture = "201q.png";
        },
                {
            name = "Name a common bird?";
            questionpicture = "202q.png";
        }
    ),
        (
                {
            name = "List 3 rooms in your house?";
            questionpicture = "301q.png";
        }
    )
)

为了工作你的上述谓词,那么数组必须是这样的,

(
        {
        name = "What is the opposite of up?";
        questionpicture = "101q.png";
    },
        {
        name = "What is the opposite of front?";
        questionpicture = "102q.png";
    },
        {
        name = "Name a common pet?";
        questionpicture = "201q.png";
    },
        {
        name = "Name a common bird?";
        questionpicture = "202q.png";
    },
        {
        name = "List 3 rooms in your house?";
        questionpicture = "301q.png";
    }
)

编辑:- 试试这样,

 NSArray *questionData=[[NSArray alloc] initWithObjects:level1,level2,level3, nil];

NSPredicate *resultPredicate=[NSPredicate predicateWithFormat:@"name CONTAINS 'the'"];


NSMutableArray *resultarray= [[NSMutableArray alloc]init];
for(int i=0;i<[questionData count];i++){
    NSArray* searchResults=[[questionData objectAtIndex:i]  filteredArrayUsingPredicate:resultPredicate];
    if([searchResults count]>0)
        [resultarray addObject:searchResults];
}
NSLog(@"%@",resultarray);
O/P:-
 (
        (
                {
            name = "What is the opposite of up?";
            questionpicture = "101q.png";
        },
                {
            name = "What is the opposite of front?";
            questionpicture = "102q.png";
        }
    )
)
于 2013-07-18T11:49:49.583 回答