从服务器下载本地化文件 - ios编程
对于本地化文件,例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
捆绑包本质上只是具有特定结构的目录。因此,您可以将下载的本地化文件放入
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:...]
.