能否从通过 iTunes 上传的文件中观察到 iOS 文件系统的变化?

发布于 2024-12-06 13:09:00 字数 108 浏览 1 评论 0原文

我有一个向用户显示文件列表的应用程序。该应用程序启用了文件共享,因此用户可以通过 iTunes 添加或删除文件。

是否可以观察用户执行此操作时的文件系统更改?我想自动更新可用文件的显示。

I have an application that displays a list of files to the user. The application has file sharing enabled, so the user can add or remove files through iTunes.

Is it possible to observe file system changes from the user doing this? I'd like to automatically update the display of files available.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烂柯人 2024-12-13 13:09:00

遗憾的是,此类事件没有观察者或通知,但您可以重新扫描应用程序委托的 applicationDidBecomeActive: 方法中的文件。

工作流程:当用户通过 iTunes 在应用程序的文档目录中添加文件时,iTunes 会短暂同步这些文件,使您的应用程序在这段短暂的时间内变为非活动状态 (applicationWillResignActive:),并且然后再次使其处于活动状态 (applicationDidBecomeActive:)。

因此(即使不是唯一一次调用此方法)在此方法中扫描“文档”文件夹的内容保证当用户通过 iTunes 添加文件时该文件夹是最新的


有关 UIApplication 的委托消息传递的更多信息工作流程,我鼓励您阅读 cocoanetics 的这篇优秀文章

Unfortunately there is no observer or notification for such event, but instead you can rescan the files in the applicationDidBecomeActive: method of your application's delegate.

Workflow: when the user adds files in your app's Document directory thru iTunes, iTunes briefly synchronize the files, making your app become inactive (applicationWillResignActive:) during this small duration, and then make it active again (applicationDidBecomeActive:).

Thus (and even if it is not the only time this method is called) scanning the contents of your Documents folder in this method guaranties that it will be up to date when the user adds files thru iTunes.


For more info about UIApplication's Delegate Messaging workflow, I encourage you to read this excellent article from cocoanetics.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文