NSMetadataQuery 搜索结束
有没有办法知道 NSMetadataQuery 是否仍在收集元数据(或仍在运行)?
在我的程序中,我将搜索范围设置为单个目录;现在,查询很简单,因此需要一些时间来收集所有数据。我怎么知道它是否完成?
Is there a way to know whether or not the NSMetadataQuery
is still gathering metadata (or is still running)?
In my program I set the search scope to a single directory; now, the query is simple so it takes a few time to collect all the data. How can I know whether it's finished or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您查看 NSMetadataQuery 类参考。它包含有关
NSMetadataQuery
的信息,包括两个方法(-isGathering
和-isStopped
)...I would recommend you take a look at the NSMetadataQuery Class Reference. It has information about the
NSMetadataQuery
, including two methods (-isGathering
and-isStopped
)...