2

取消可能会停止 AFHTTPRequestOperation 的实例,但有时会失败。

任何人都有立即或延迟几秒钟停止 AFHTTPRequestOperation 实例的解决方案?

4

1 回答 1

0

AFAIK,没有什么比跟随你可以用 AFHTTPRequestOperation 做的了!

 AFHTTPRequestOperation *operation = [AFHTTPRequestOperation operationWithRequest:request success:success failure:failure];
 [self.operationQueue addOperation:operation];
 [operation performSelector:@selector(cancel) withObject:nil afterDelay:.5];
于 2012-11-09T09:18:56.910 回答