I am implementing a search field where the user can type in a string to filter the items displayed in a view. Each object being displayed has a keywords
to-man
If you is trying to catch only the equals names but with insensitive case, I think it is the best solution
[NSPredicate predicateWithFormat:@"ANY keywords.name LIKE[c] %@", ...];
You helped me a lot. Thanks guys!!!
In my case I did:
[NSPredicate predicateWithFormat:@"ANY name LIKE[c] %@", @"teste"];