从服务器下载本地化文件 - ios编程

发布于 2024-12-26 00:44:15 字数 239 浏览 0 评论 0原文

对于本地化文件,例如 localizedthis.png,可以使用以下命令检索该文件的路径

[NSBundle mainBundle] pathForResource:ofType:inDirectory:forLocalization:].

问题是,如果我们从服务器下载文件并将它们存储在“Documents”文件夹中,是否有任何等效的方法可以执行类似的操作上面的方法?

谢谢。

For localized files, for example, localizedthis.png, the path for this file can be retrieved using

[NSBundle mainBundle] pathForResource:ofType:inDirectory:forLocalization:].

The question is, if we download the files from server and store them in "Documents" folder, is there any equivalent way to do something similar to above method?

Thanks.

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

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

发布评论

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

评论(1

那支青花 2025-01-02 00:44:15

捆绑包本质上只是具有特定结构的目录。因此,您可以将下载的本地化文件放入 Documents/MyBundle/Contents/Resources/fr.lproj/ (法语)等目录中,而不是 [NSBundle mainBundle],您可以使用[NSBundle bundleWithPath:...]

Bundles are essentially just directories with a specific structure. So you could put the localized files that you download into a directory like Documents/MyBundle/Contents/Resources/fr.lproj/ (for French) and instead of [NSBundle mainBundle], you'd use [NSBundle bundleWithPath:...].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文