I have an NSString and fail to apply the following statement:
NSString *myString = @"some text";
[myString stringByAppendingFormat:@"some text = %d", 3];
no log or error, the string just doesn’t get changed. I already tried with NSString (as documented) and NSMutableString.
any clues most welcome.
I would suggest correcting to (documentation):
From the docs: