up vote 2 down vote favorite
share [g+] share [fb]

When debugging the following code

NSString *var1 = @"blaa";
NSString *var2 = @"blaaaaa";

NSString* script = [NSString stringWithFormat:@"Set_Variable( %s, %s )",var1,var2];

the %s placehoders in script are replaced with funny gibberish characters. Can you see any errors in the code.

Many thanks, (Confused .NET developer trying to learn objective c :))

Tony

link|improve this question

79% accept rate
feedback

1 Answer

up vote 10 down vote accepted

%s is the format specifier for a C string, char*

For objective-c objects (such as NSString) you should use %@

link|improve this answer
wow, that was quick. Thanks a mill Zydeco. – TonyNeallon Feb 11 '09 at 12:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.