Top "Afnetworking" questions

AFNetworking is a networking library for iOS and macOS available on GitHub and CocoaPods.

ASIHTTPRequest vs AFNetworking vs NSUrlRequest

In the past I have use ASIHTTPRequest but now there is NSURLRequest. Should we be using the NSURLRequest now? Are …

iphone ios afnetworking
How to batch request with AFNetworking 2?

So I'm rewriting an app for iOS 7 with AFNetworking 2.0 and I'm running into the issue of sending a batch of …

ios afnetworking afnetworking-2
What major ASIHTTPRequest features is AFNetworking missing?

With work having recently stopped on ASIHTTPRequest, it seems like attention is shifting to AFNetworking. However, I've not yet found …

iphone ios ipad asihttprequest afnetworking
AFNetworking and Cookies

I'm using AFNetworking as a network layer for my iPhone app which connects to a Rails server that uses Devise …

afnetworking
AFNetworking - How to setup requests to be retried in the event of a timeout?

I have recently migrated from ASIHTTPRequest to AFNetworking, which has been great. However, the server that I am connecting with …

iphone ios ipad asihttprequest afnetworking
AFNetworking - do not cache response

I'm using this code to pull a simple JSON feed from a server: AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; manager.responseSerializer = [AFJSONResponseSerializer …

ios json caching afnetworking afnetworking-2
library not found for -lPods-AFNetworking

I am getting the following error when using AFNetworking: ''library not found for -lPods-AFNetworking'' "linker command failed with exit code 1 (…

ios xcode runtime-error afnetworking xcode-6.2
Reading AFNetworking response headers

I'm trying to figure out how to read the response headers from a AFNetworking request? Is it possible in the …

objective-c xcode afnetworking
Waiting for completion block to complete in an AFNetworking request

I am making a JSON request with AFNetworking and then call [operation waitUntilFinished] to wait on the operation and the …

objective-c nsoperation synchronous afnetworking
Are AFNetworking success/failure blocks invoked on the main thread?

Does AFNetworking call the completion block on the main thread? or is it called in the background, requiring me to …

ios afnetworking