在我的應用程序,我有一個包含像這樣的文本文件:如何閱讀Localizable.strings的內容並把它放到一個UIWebView
<html>
<style rel="stylesheet" type="text/css">
body {
font-family: Arial, sans-serif;
font-size: 18px;
color: #333333;
padding: 14px;
text-align: justify;
}
h2 {
font-size: 18px;
}
</style>
<body>
<p>
This is the first statement.
<br>
This is the second statement.
</p>
</body>
</html>
該數據將被加載到一個UIWebView和一切工作。但是,我希望文本是可本地化的,所以我正在考慮將它們放到Localizable.strings中。因此,Localizable.strings有這樣的事情:
FIRST_STATEMENT = "This is the first statement";
SECOND_STATEMENT = "This is the second statement";
現在的問題是,我要如何從Localizable.strings訪問數據,這樣我可以把他們的一個UIWebView對象的內容?我在想JavaScript,但我不知道該怎麼做。有任何想法嗎?