Re: Predicate Row Template array within array

2014-11-30 Thread Keary Suska
On Nov 30, 2014, at 9:02 AM, Trygve Inda wrote: > { > > NSString* name; > NSDate*date; > NSArray* words; > } > Objects; > > The words array looks like: > { > > NSString* id; > NSString* word; > } > Words; > > > As a follow up: > > When I use a left expression of: > > @"words.word"

Re: Predicate Row Template array within array

2014-11-30 Thread Trygve Inda
{ NSString* name; NSDate*date; NSArray* words; } Objects; The words array looks like: { NSString* id; NSString* word; } Words; As a follow up: When I use a left expression of: @"words.word" And a modifier of: NSAnyPredicateModifier My predicate ends up as: ANY words.word CON

Predicate Row Template array within array

2014-11-30 Thread Trygve Inda
I have an array of objects that looks like: { NSString* name; NSDate*date; NSArray* words; } The words array looks like: { NSString* id; NSString* word; } I need to build a Predicate Row template to result in a way to search for names, dates, and words. The first two ar