我想为 iPhone 制作一个文件浏览器应用程序,但我不知道从哪里开始
我想为 iPhone 制作一个简单的文件浏览器应用程序。 (就像Cydia中的iFile) 它不仅仅是查看Documents文件夹,它还可以查看iPhone/iPod Touch文件系统中的所有目录。 就像 Mac 上的 Finder/Windows 上的资源管理器一样。
谁能帮助我?
PS 我将发布到 Cydia Store,而不是 App Store。
I want to make a simple file browser app for iPhone. (Like iFile in Cydia)
It's not a just view Documents folder, it can see all directories in the iPhone/iPod Touch File System.
Like a Finder on Mac/Explorer on the Windows.
Who can help me?
P.S. I'll publish to Cydia Store, not App Store.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您将需要启动并运行 iPhone SDK,并且您将需要查看 NSFileManager 文档。
You're going to need the iPhone SDK up and running and you're going to want to go over the NSFileManager documentation.
如果您想发布到应用程序商店,则无法执行此操作。您不得访问您自己的沙箱之外的文件。
You can't do this if you want to publish to the app store. You are not allowed to access files outside of your own sandbox.
iOS 应用程序在自己的小沙箱中运行——它们无法查看其他应用程序的目录。因此,除非您正在为越狱设备编写应用程序,否则您就不走运了。
iOS apps operate in their own little sandboxes -- they can't see into other apps' directories. So unless you're writing an app for a jailbroken device, you're out of luck.