I make a comparison of two strings which are obviously identical. Unfortunately my if clause doesn´t work as expected:
NSLog(@\"%@ == %@ ?\",strippedString1,
With == you are comparing pointer address, to compare the contents of the strings you could use:
==
[strippedString1 isEqualToString: strippedString2];