Objective c 释放NSURL连接?

Objective c 释放NSURL连接?,objective-c,Objective C,我有一个到服务器的连接,我想释放它的队列,我现在不知道该怎么做 [NSURLConnection sendAsynchronousRequest:request queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse *response, NSData *data,

我有一个到服务器的连接,我想释放它的
队列
,我现在不知道该怎么做

     [NSURLConnection
         sendAsynchronousRequest:request
         queue:[[NSOperationQueue alloc] init]
         completionHandler:^(NSURLResponse *response,
                             NSData *data,
                             NSError *error)

//some if else statements

   }];

我不知道如何在两个连接之间
释放
此队列参数?

如果使用ARC,则无需执行任何操作


如果没有,您可以包括
自动释放

要释放NSURLConnection还是NSOperationQueue?你在使用ARC吗?我在猜测
[[NSOperationQueue alloc]init]autorelease]
别让我这么想。