I have a class with an accessible method that passes back an NSString when called.
NSString
[MyClass getMyString]
The string variable
You are comparing pointers to strings, rather than the strings themselves. You need to change your code to
if (if([mySecondString isEqualToString:myString]) { .... }