I have an NSArray of custom objects that all have a @property name of type NSString. How can I quickly enumerate through the array and cre
NSArray
name
NSString
NSString *searchString = @"dog"; NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.name contains %@", searchString]; NSArray *filteredArray = [testArray filteredArrayUsingPredicate:predicate];