获取 iPhone mainBundle 文件
我不知道检索 iphone 应用程序 mainBundle 中资源的所有文件名所需的确切代码。如果我可以有某种代码,例如:
NSArray *array = [[NSBundle mainBundle] getAllResourceFilenames];
它将很有帮助。提前感谢您的帮助!
I dont know the exact code i need to retrieve all of the filenames of the resources in my iphone apps mainBundle. if i could have some kind of code like:
NSArray *array = [[NSBundle mainBundle] getAllResourceFilenames];
it would be helpful. thanks inadvanced for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看 NSFileManager 的 SDK 文档,但这将帮助您入门:
You should look at the SDK documentation for NSFileManager, but this will get you started:
您可以获取主包的资源路径
,然后只需使用常规 NSFileManager 方法即可获取其内容。
You can get the resources path of the main bundle
and then simply use the regular NSFileManager methods to get its contents.