Top "Afnetworking" questions

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

Cannot install Alamofire in new Xcode Project. "No Such module Alamofire"

I follow the instructions to the T. Fresh install of all, yet getting the error: "No Such module Alamofire" Directions …

ios ios7 afnetworking alamofire
Xcode: ld: library not found for -lAFNetworking

Because of this one reason, build always fails...Any ideas about what I could try? EDIT: the solution is to …

xcode clang afnetworking cocoapods ld
AFNetworking error :The operation couldn’t be completed. (Cocoa error 3840.)

I send a post request to my server like this.: -(Produkt*)fetchProductByID:(int)idNumber { NSString* command = @"fetchProduct"; NSString* number = […

afnetworking
Cocoapods + Cannot load underlying module for 'x'

I am running XCode 7, Swift 2.0, iOS 9. I want to install Alamofire in my project using Cocoapods. I have done the …

ios swift afnetworking cocoapods alamofire
is there an easy way to get the http status code in the failure block from AFHTTPClient?

I see that there is a list of accepted http status codes that I can modify, but I think it …

afnetworking
Can AFNetworking return data synchronously (inside a block)?

I have a function using AFJSONRequestOperation, and I wish to return the result only after success. Could you point me …

ios objective-c-blocks synchronous afnetworking
AFNetworking 2.0 Reachability

I am trying to determine if the user is connected to the internet by using AFNetworking 2.0 and the "AFNetworkReachabilityManager", but …

ios iphone afnetworking
How to download a file and save it to the documents directory with AFNetworking?

I am using the AFNetworking library. I can't figure out how to download a file and save it to the …

ios iphone afnetworking
I want to allow invalid SSL certificates with AFNetworking

I want to allow invalid SSL certificates. My main code is below: myClient = [[MyClient alloc] init]; [myClient getHtml:@"/path/to/…

objective-c afnetworking
AFNetworking checking Availability

I've implemented AFNetworking without subclassing AFHTTPClient, in part using the following code in my DownloadQueueManager: -(void)downloadPodcastAt:(NSString *)url …

ios ios6 afnetworking reachability