I have an array of dictionaries, similar to the following:
(
{
Black = "?";
Date = "????.??.??";
Result = "*";
SourceDate = "2007.10.24";
White = "Mating pattern #1";
},
{
Black = "?";
Date = "????.??.??";
Result = "*";
SourceDate = "2008.10.24";
White = "About this Publication";
}
)
I want to offer the user the ability to search for text either within just the "White" and "Black" fields, or within any field. I've got an NSPredicate for doing just the specific fields:
predicate = [NSPredicate
predicateWithFormat:@"self.Black contains[cd] %@ or self.White contains[cd] %@",
searchText, searchText];
[filteredGames addObjectsFromArray:[games filteredArrayUsingPredicate:predicate]];
I can't think of how to phrase a predicate that will return me the dictionaries for which any of the objects within match the text. i.e. I could search for "2007" and it would return the first dictionary but not the second. I tried "self.*" which I didn't really expect to work and also "ANY self.allValues" which I was more hopeful about. I don't actually know in advance what the keys will be, hence needing something less specific.
Any suggestions?