如何处理支持文件目录中的同名文件
举例来说,在 Xcode 中,我在旧的支持文件中创建了 3 个文件夹,分别命名为“a”、“b”和“c”。
在每个文件夹中,我都有一个 xml 文件名“file.xml”。
如何使用 NSMainBundle 获取这 3 个不同 xml 文件的路径?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了在运行时获取这些文件,Xcode 将在复制捆绑资源阶段复制它们。这通常会复制到捆绑包的根目录中。要处理目录,请参阅@CocoaFu对这个SO问题的回答。
然后在代码中
NSBundle* bundle = [NSBundle mainBundle]
将为您提供主包从此您可以使用 pathForResource:ofType:inDirectory 在目录中查找: 例如,
这些方法在 NSBundle 类参考 另请参阅 捆绑包编程指南
To get these files at runtime Xcode will copy them in the Copy Bundle Resource phase. This normally copies into the root of the bundle. To deal with directories see @CocoaFu's answer to this SO question.
Then in the code
NSBundle* bundle = [NSBundle mainBundle]
will give you the main bundleFrom this you look in directories using pathForResource:ofType:inDirectory: e.g.
The methods are given in NSBundle class reference also see the Bundle Programming guide