将我的xib转换为阿拉伯语

时间:2015-07-03 04:50:18

标签: ios localization xib

我的应用程序将以英语,阿拉伯语进行。我使用英文版的自动布局制作了我的xib。现在我想为阿拉伯语版本使用相同的xib。但问题是界面也会从右到左改变其布局。

我知道xib的NSLocalization,但我对阿拉伯语版本一无所知,我在去年搜索了一下但没有发现任何相关内容。

e.g。英文版
图标标签

阿拉伯语版本
标签图标

请详细说明如何将我的英文版xib转换为阿拉伯语版本。

由于

1 个答案:

答案 0 :(得分:0)

Use Auto Layout in your xibs. By default, the constraints created in Xcode's Interface Builder use Leading/Trailing properties, meaning all of the UI gets automatically flipped in RTL languages.

Like Leszek commented as well, you can check out Supporting Right-to-Left Languages for anything else.