我有与服务器的连接,我想发布它的queue
,我现在不知道如何。
[NSURLConnection
sendAsynchronousRequest:request
queue:[[NSOperationQueue alloc] init]
completionHandler:^(NSURLResponse *response,
NSData *data,
NSError *error)
//some if else statements
}];
我不知道如何在2个连接之间release
这个队列参数?
答案 0 :(得分:1)
如果您使用ARC,则无需执行任何操作。
如果没有,您可以加入autorelease
。