NSOperation 存在于 NSOperationQueue 上

发布于 10-16 11:53 字数 92 浏览 3 评论 0原文

有谁知道一种方法来判断 NSOperation 是否已经在 NSOperationQueue 上,而无需实际获取操作列表并与每个项目进行比较?

提前致谢,

Does anyone know a way of telling if an NSOperation is already on a NSOperationQueue without having to actually get the list of operations and compare with each of the items?

Thanks in advance,

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

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

发布评论

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

评论(1

旧瑾黎汐2024-10-23 11:53:34

你必须拿到这份清单,但这并不那么费力。如果 queueoperation 是您的对象:

[[queue actions] containsObject:operation];

You have to get the list, but it's not that taxing. If queue and operation are your objects:

[[queue operations] containsObject:operation];

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