Nsoperations和NSoperationqueues之间的区别

时间:2013-04-03 09:25:40

标签: ios

在这里输入代码NSoperations和NSoperationqueues之间的区别是什么?

由于 keerthi

1 个答案:

答案 0 :(得分:1)

NSOperation类是一个抽象类,用于封装与单个任务关联的代码和数据。

NSOperationQueue类调节一组NSOperation对象的执行。添加到队列后,操作将保留在该队列中,直到明确取消或完成其任务为止。

你也可以查看这些链接。因为他们给出了很好的答案: -

Difference between NSOperation and NSInvocationOperation?

http://www.raywenderlich.com/19788/how-to-use-nsoperations-and-nsoperationqueues