iPhone 上未拾取国际化文件

发布于 2024-09-12 20:14:22 字数 443 浏览 5 评论 0原文

我有一个已在我的应用程序中翻译的 .plist。最初,我在应用程序根目录下有一个 .plist (icons.plist)。我按如下方式加载文件:

[[NSBundle mainBundle] pathForResource:@"icons" ofType:@"plist"]

对文件进行本地化后,添加我的特定语言(在本例中为 de),我已检查以确保 icon.plist 存在于 English.lproj 和 de.lproj 中(确实存在)。

我一直以这种方式执行 i18n,并且在此之前它一直有效,但现在它似乎没有获取更新的德语文件。

NSLogging 它使用的路径我发现它仍在查找“myApp.app/icons.plist”而不是我所假设的“myApp.app/de.lproj/icons.plist”。

我在这里错过了一个明显的步骤吗?

I have a .plist that I have had translated in my app. Originally, I had one .plist (icons.plist) at application root. I load the file as follows:

[[NSBundle mainBundle] pathForResource:@"icons" ofType:@"plist"]

After making the file localized, adding my specific language (de in this case) I have checked to ensure icons.plist exists in English.lproj and de.lproj (it does).

I've always performed i18n this way and it has always worked prior to this, but now it doesn't seem to pick up the updated German file.

NSLogging the path it uses I find that it is still looking in "myApp.app/icons.plist" and not "myApp.app/de.lproj/icons.plist" as I would assume.

Have I missed an obvious step here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水波映月 2024-09-19 20:14:22
  • 删除您的“build”目录(icons.plist 可能仍然存在)
  • 从设备中删除应用程序,或者通过将 .app 拖到管理器来执行完整安装(“build and run/debug”显然是增量安装,这意味着它可能不会删除现有的icons.plist)
  • Delete your "build" directory (icons.plist might still exist)
  • Remove the app from device, or do a full install by dragging the .app to the Organizer ("build and run/debug" apparently does an incremental install, which means it might not delete an existing icons.plist)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文