ios - Add NewLine character in localizable.strings -
how add newline character in localizable.strings?
i tried putting \n, no success.
edit 1: how add links inside localizable.stings ?
using \n should work. line in "localizable.strings":
"abc" = "foo\nbar"; and code:
nsstring *s = nslocalizedstring(@"abc", null); nslog(@"%@", s); i output
2013-05-02 14:14:45.931 test[4088:c07] foo bar
Comments
Post a Comment