As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center提供指导。
7年前关闭。
默认情况下,NSURLConnection是同步的还是异步的
相同的答案应该是什么。还有一个问题是:
委托和通知有什么区别。
我知道区别,但是我很困惑,通知是本地通知或Apple通知。或者iPhone中还有其他功能。因为我也读过有关
异步加载数据
问:
委托和通知有什么区别。
答:
使用委托进行一对一对象通信。例如,从objA接收到的事件将调用它作为委托objB来执行。
将通知用于一对多对象通信。例如ObjA,ObjB注册为ObjA事件的观察员。事件发生时,它将消息发送到ObjA和ObjB。
7年前关闭。
默认情况下,NSURLConnection是同步的还是异步的
相同的答案应该是什么。还有一个问题是:
委托和通知有什么区别。
我知道区别,但是我很困惑,通知是本地通知或Apple通知。或者iPhone中还有其他功能。因为我也读过有关
NSNotificationCenter
的信息。 最佳答案
问:
默认情况下,NSURLConnection是同步的还是异步的
答:
这取决于您在NSURLConnection中调用哪种方法。但是大多数方法都是异步的。除了sendSynchronousRequest:returningResponse:error之一:
同步加载数据
+ sendSynchronousRequest:returningResponse:error:
异步加载数据
+ connectionWithRequest:delegate:
– initWithRequest:delegate:
– initWithRequest:delegate:startImmediately:
+ sendAsynchronousRequest:queue:completionHandler:
– start
问:
委托和通知有什么区别。
答:
使用委托进行一对一对象通信。例如,从objA接收到的事件将调用它作为委托objB来执行。
将通知用于一对多对象通信。例如ObjA,ObjB注册为ObjA事件的观察员。事件发生时,它将消息发送到ObjA和ObjB。
09-25 20:07