但我仍然将语言设置为英语:
有谁知道我错过了什么?
编辑:
如果我这样做:
- (voID)logallLocales{ NSLocale *curentLocale = [NSLocale currentLocale]; NSArray *locales = [[NSLocale availableLocaleIDentifIErs] sortedArrayUsingSelector:@selector(compare:)]; for (Nsstring *locale in locales) NSLog(@"locale '%@' is: %@'",locale,[curentLocale displaynameForKey:NSLocaleIDentifIEr value:locale]);}
结果:
‘sv’是:瑞典人’
‘sv_FI’是:瑞典语(芬兰)’
‘sv_SE’是:瑞典语(瑞典)’
我会得到三个瑞典语区域选项,所以技术上“sv”应该这样做.但我也没有运气测试其他选项.
但是如果simultor需要重置来改变Lanugage那么我认为我的问题是回答.在启动时传入的参数是不可能的. =)
解决方法 这与您在物理设备中使用的过程相同.进入设置>一般>国际化并将语言从英语改为瑞典语
根据问题中的第3条评论进行编辑
Well the thing is that I deploy to simulator a lot. And before every deploy I usually want to clean the whole simulator with a hoy-key: I’ve connected “reset Content and Settings…” to cmd+K. This makes the simulator reset back to english language even if I set it explicitly via the very obvIoUs way pointed out below. (Settings > General > International) I really want it to be an argument passed on launch. Its a very tedious way to do it manually every single time,especially when Im working only with swedish,norweigan and danish at the moment. =)
尝试使用Swedish / norvegian和丹麦语内容替换Localizable.string(En)中的整个内容.所以模拟器是英文的,从英文字符串文件中读取,但用另一种语言显示内容.
总结以上是内存溢出为你收集整理的如何在iOS模拟器中设置特定语言?全部内容,希望文章能够帮你解决如何在iOS模拟器中设置特定语言?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)