hi all, another quick question. how to compare an string with the values of an array for example
string a =@"abc";
compare = [[NSMutableArray arrayWithObjects:@"a",@"b",@"abc",@"d",nil]];
if string matches any of the element in array, i should show some alert or something.
regards