This snippet shows how to search for a string within another string and how to check if two strings are equal.
NSString* needle = @"hello";
NSString* haystack = @"hello world";
NSRange matching = [haystack rangeOfString : needle];
// Searching for a string within another string
if(matching.location == NSNotFound){
// Needle not found in haystack
} else {
// Needle found in haystack
}
// Checking for equality
if([needle isEqualToString:@"hello"]){
// Needle is equal to "hello"
} else {
// Needle is not equal to "hello"
}