How do I localize UIImagePickerController

后端 未结 1 875
一个人的身影
一个人的身影 2020-12-15 23:12

I\'ve written an iOS app which uses custom localization (for various reasons). It undefines NSLocalizedString and replaces with an inline function of the same name which pu

相关标签:
1条回答
  • 2020-12-16 00:04

    Did you add the languages you wish to support to your app's definition? In XCode 4 this can be found in your Project Info page (see below).

    UIKit views aren't shown in the device language if the device language isn't in the app's supported languages list. This is a good thing, otherwise in an app that uses the standard localization framework the user might see a mix of different languages (UIKit views would be in the device language and all the other content, being unavailable in the device language, would be in the app's base language).

    Supported localization panel in XCode 4

    0 讨论(0)
提交回复
热议问题