我使用AFNetworking 3.0,我想发送批量请求。 AFNetworking 2.0支持enqueueBatchOfHTTPRequestOperations:progressBlock:completionBlock而不是AFNetworking 3.0。
如何使用AFHTTPSessionManager发送一批请求?
答案 0 :(得分:1)
在AFNetworking 3.0中,没有API可以做到这一点。基本上这是因为它使用NSURLSession
而不是将NSURLConnection
包裹到NSOperation
中
你有一些选择:
GCD dispatch groups
NSURLSession
包装到NSOperation
,只需要让NSOperation
观察state
NSURLSession
属性并在操作之前添加依赖关系添加到NSOperationQueue