When debugging the following code
NSString *var1 = @"blaa";
NSString *var2 = @"blaaaaa";
NSString* script = [NSString stringWithFormat:@"Set_Variable( %s, %s )",var1,var2];
placeholders %s
in the script are replaced with funny lyric characters. Do you see errors in the code?
source
share