I have an mutable array which consists dictionaries of contacts
[
{
"name":""
"Email":""
type:"A"
},
"name":""
"Email":""
type:"B"
}
"name":""
"Email":""
type:"C"
}........100 contacts
]
i want to filter them by type A,B or C that is taken care by a segmented switch.My question how to use predicate in order to filter this type of case.
Here is my implementation of filtering
-(NSArray *)filtercontcts:(NSString *)filterParameter
{
NSArray *filterContacts = [[NSArray alloc]init];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"type == %@)",filterParameter];
filterContacts= [contacts filteredArrayUsingPredicate:predicate];
return filterContacts;
}
Help is Much Appreciated thanks.