AFNetworking でネットワーク要求を行う前に、すべてのネットワーク要求 (別の方法で開始された要求) をキャンセルする方法はありますか?
- (void)sendRequest:(NSUInteger)page{
NSURL *aUrl = [NSURL URLWithString:@"http://www.abc.com/"];
AFHTTPClient *httpClientToCancel = [[AFHTTPClient alloc] initWithBaseURL:aUrl];
[httpClientToCancel cancelAllHTTPOperationsWithMethod:@"POST" path:@"product/like"];
[httpClientToCancel release];
... start a new request here .....
しかし、うまくいきません。新しいリクエストを開始する前に、すべてのリクエスト(少なくとも上で書いたリクエスト)をキャンセルしたいだけです。
ありがとうございました!