如何访问 iPhone 应用程序内部的文件?
我需要在 iPhone 应用程序中访问构建该应用程序所用的文件(.plist 等)。有一种硬编码的方法可以做到这一点:
NSString *appDir = [[[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
objectAtIndex:0]
stringByDeletingLastPathComponent]
stringByAppendingPathComponent:appFolder];
其中 appFolder
是文件夹应用程序的名称,例如“test.app”。知道 appDir 后,访问文件就很简单了。
是否有其他非硬编码的方式来访问应用程序中的文件?
提前致谢!
I need in a iPhone app to access files that the app is build with(.plist etc). There's an hardcoded way to do this:
NSString *appDir = [[[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)
objectAtIndex:0]
stringByDeletingLastPathComponent]
stringByAppendingPathComponent:appFolder];
where appFolder
is the name of folder app, like "test.app". After the appDir is known, to access files is simple.
Is there any other, not-hardcoded way to have access to files form the app?
Thanks in Advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的应用程序文件夹是“主包”。所以你可以使用 NSBundle 方法,例如
Your app folder is the "main bundle". So you can use NSBundle methods such as