So I want to test 2 NSString to see if they're the same while I'm typing so like:
NSString *theOriginalString = [NSString stringWithFormat:@"Superman"];
NSString *theTypedString = [textView string];
I want to see if theTypedString is wrong while I type it out so a warning pops out if someone typed the wrong answer.
Thank you in advance.