我是一个尝试学习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
视图?