I want search (to check) one NSString
in NSMutableArray
. but I dont know about it.
NSMutableArray *a = [[NSMutableArray alloc]initWithObjects:@"Marco",@"christian",@"hon",@"John",@"fred",@"asdas", nil];
NSString *name = @"John";
I want to see is there name variable in a NSMutableArray
variable ?