hi
i've something like that:
Code:
[NSString stringWithFormat:@"<p>Hello,<br><br>blablabla %@<br><IMG src=\"someurl%@%@\"<p><br>", blabla1.text, url1.text, url2.text];
;
in my localization.string i've add a key containing this value
Code:
"mykey" = "<p>Hello,<br><br>blablabla %@<br><IMG src=\"someurl%@%@\"<p><br>";
in my implementation file i've try do add my localization in this way
Code:
nsstring *myString = [NSString stringWithFormat:@"%@", NSLocalizedString(@"bodykey", @""), blabla1.text, url1.text, url2.text];
Obviously it does not work, someone can help me? i'm going crazy with this stupind thing:d