Hi I am woundering if you can check to see if a NSString equals a specific value say for instance a name of a person?
I am thinking along the lines of
if (mystring == @"Johns"){
//do some stuff in here
}
if ([mystring isEqualToString:@"Johns"]){
//do some stuff in here
}