本文介绍了NSOperation表现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用NSOperation在后台线程上进行服务器端连接。我不想继承NSOperation ..那么如何使用NSOperation以及如何从NSOperation返回响应......

I am trying to server side connection on a background thread using NSOperation. I didn't want to subclass NSOperation ..So how can use NSOperation and how to return response from NSOperation...

关于这个的任何想法?

推荐答案

因为NSOperation是一个抽象类,所以没有使用NSOperation而不使用NSOperation的子类。

如果你不喜欢我想自己继承你可以使用其中一个NSOperation子类(即,或)。

since NSOperation is an abstract class there is no way to use NSOperation without using a subclass of NSOperation.
If you don't want to subclass yourself you can use one of the NSOperation subclasses (ie NSInvocationOperation, or NSBlockOperation).

这篇关于NSOperation表现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 02:06