有没有关于如何在没有块的情况下使用 NSOperationQueue 的教程?
我的应用程序必须在 iOS 3.2 上运行,并且 -addOperationWithBlock: 等方法仅适用于 > 4.0。
但 NSOperationQueue 从 iOS 2.0 开始就可用了,所以我想尝试一下“老方法”。有谁知道一个方便的教程,展示了如何在没有块的情况下使用 NSOperationQueue 的基础知识?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
调用操作非常简单。这些操作允许您使用某些对象参数(可选)向特定对象发送消息。
因此,鉴于您想要调用这个方法:
您可以执行类似的操作来实现它:
希望有所帮助。
it's pretty straightforward with Invocation operations. These are operations that allow you to send a message to a particular object with some object parameter (optional).
So given this method that you want to invoke:
You can do something like this to make it happen:
Hope that helps.
@Firoze Lafeer 给出了 NSInitation 操作的示例,但您也可以使用自己的 NSOperation 子类。
官方文档通过示例展示了您可以使用的每种类型的操作。即使有可用的块,有时也首选使用 NSOperation 子类来完成更大的任务。
@Firoze Lafeer gave an example with NSInvocation operation, but you can also use your own NSOperation subclass.
The official documentation shows with example every type of operation you can use. Even with blocks available, it's sometime preferred to use NSOperation subclass for bigger tasks.
在这里找到了一个非常好的教程 。它还超出了主题,并提供了有关为什么在主线程上获取数据并不总是一个好主意的信息。
Found a pretty good tutorial here. It also goes beyond the topic and gives info on why it's not always a good idea to fetch data on the main thread.