在以前版本的Xcode上,当您对XIB进行本地化时,它将在语言文件夹中创建该XIB的副本。现在,当你做同样的事情时,Xcode为每种语言创建了本地化的字符串。
我的问题是:如果我为该版本编译我的目标,这个方法是否可以在iOS 7上运行,或者这只适用于iOS 8吗?
答案 0 :(得分:1)
它很可能会奏效,但在某些情况下它会赢得。
A storyboard or XIB will not localize correctly if all of the following three conditions are true:
The storyboard or XIB uses size classes.
The base localization and the build target are set to Universal.
The build targets iOS 7.0.
(详见release notes第32页)