标签: ios nsurlconnection
我正在使用nsurlconnection的sendAsynchronousRequest:queue:completionHandler:类函数。如何取消此连接?
sendAsynchronousRequest:queue:completionHandler:
答案 0 :(得分:1)
你做不到。如果您需要取消网址请求的选项,则必须使用NSURLConnection的基于代理的方法,例如connectionWithRequest:delegate:。
NSURLConnection
connectionWithRequest:delegate: