I want to find multiple values in one NSMutableArray. Like if this two values found then in this array then i want to execute my condition.For Example this is my array
NSMutableArray findValues have 1,2,3,4,5.Now i want to put condition like this
if([findvalues have string @"1"] && [findValues have string @"4"]){
//execute code
}
can anyone suggest how to do this?