Sorted out the search text criteria for search list. But the search expression is currently too crude. Need a better way to identify words within name.
Using the basic like[c] expression which is grossly inadequate. Maybe regular expression or a combination of predicate complex expressions to cater for this.
Found a nice solution for this iTunes like search from Cocoa Is My Girlfriend.
Overkill with above solution; just use @”x contains[c] %@” will do.

