取消可能会停止 AFHTTPRequestOperation 的实例,但有时会失败。
任何人都有立即或延迟几秒钟停止 AFHTTPRequestOperation 实例的解决方案?
取消可能会停止 AFHTTPRequestOperation 的实例,但有时会失败。
任何人都有立即或延迟几秒钟停止 AFHTTPRequestOperation 实例的解决方案?
AFAIK,没有什么比跟随你可以用 AFHTTPRequestOperation 做的了!
AFHTTPRequestOperation *operation = [AFHTTPRequestOperation operationWithRequest:request success:success failure:failure];
[self.operationQueue addOperation:operation];
[operation performSelector:@selector(cancel) withObject:nil afterDelay:.5];