stringByAppendingFormat not working
- by iFloh
I have an NSString and fail to apply the following statement:
NSString *myString = @"some text";
[myNSString 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.