iOS相当于Android的strings.xml?

时间:2018-07-28 21:09:14

标签: android ios localization

我是一个尝试学习iOS开发的Android开发人员。

在Android上,我习惯于保存所有应用程序字符串的strings.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">Hello!</string>
</resources>

然后我通过以下方法将其应用于标签/ TextViews:

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

iOS是否与此等效?例如,我将如何设置它,然后将字符串应用于Label视图?

0 个答案:

没有答案