AFNetworking is a networking library for iOS and macOS available on GitHub and CocoaPods.
In the past I have use ASIHTTPRequest but now there is NSURLRequest. Should we be using the NSURLRequest now? Are …
iphone ios afnetworkingSo 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-2With work having recently stopped on ASIHTTPRequest, it seems like attention is shifting to AFNetworking. However, I've not yet found …
iphone ios ipad asihttprequest afnetworkingI'm using AFNetworking as a network layer for my iPhone app which connects to a Rails server that uses Devise …
afnetworkingI have recently migrated from ASIHTTPRequest to AFNetworking, which has been great. However, the server that I am connecting with …
iphone ios ipad asihttprequest afnetworkingI'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-2I 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.2I'm trying to figure out how to read the response headers from a AFNetworking request? Is it possible in the …
objective-c xcode afnetworkingI am making a JSON request with AFNetworking and then call [operation waitUntilFinished] to wait on the operation and the …
objective-c nsoperation synchronous afnetworkingDoes AFNetworking call the completion block on the main thread? or is it called in the background, requiring me to …
ios afnetworking