4
我想添加在用戶離開視圖或他們發起新請求時取消所有當前異步請求的功能。我知道在哪裏放置代碼,但我不太清楚如何實際取消請求。從我的研究中,我知道NSURLConnection
有一個cancel
方法,但我使用異步塊調用我的請求。以下是我的代碼 - 非常感謝任何幫助!如何在Objective-C中取消異步HTTP請求?
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setHTTPMethod:@"GET"];
[request setURL:[NSURL URLWithString:[kEndpointEvents stringByAppendingString:arguments]]];
//Send an asynchronous request so it doesn't pause the main thread
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue currentQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSHTTPURLResponse *responseCode = (NSHTTPURLResponse *)response;
//Do stuff
}];
你有圖書館,教程或例子嗎? – rebello95
Checkout https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html,http://stackoverflow.com/questions/9577317/nsurlconnection-delegate-method,http: //codewithchris.com/tutorial-how-to-use-ios-nsurlconnection-by-example/ – Anurag
只是FYI給其他人疑惑:做了一些研究之後,我最終使用了AFNetworking庫。這是一個非常好的設計和最新的庫,允許連接取消等等。 – rebello95