50

I am developing an app using Swift. I want to call a REST API. I found there are two popular libraries, AFNetworking and Alamofire. But I don't know which is better (is more popular or has more features).

Can anybody suggest what are the main differences between Alamofire and AFNetworking?

Vince
  • 1,570
  • 3
  • 27
  • 48
Puvanarajan
  • 2,786
  • 6
  • 26
  • 37

5 Answers5

86

AFNetworking and Alamofire are by the same people (the Alamofire Software Foundation), Alamofire is their Swift version whereas AFNetworking is the Objective-C version.

Feature wise they are the same.

Vince
  • 1,570
  • 3
  • 27
  • 48
Luke Berry
  • 1,927
  • 4
  • 19
  • 32
  • 19
    +1 for addressing the OP's actual question (what are the main differences) and providing more information than the accepted answer. – Patrick Aug 04 '16 at 17:23
83

Use AFNetworking if you use Objective-C

Use Alamofire if you use Swift

Arsen
  • 10,815
  • 2
  • 34
  • 46
10

If you are developing app using Objective-C then you must go with the AFNetworking.

Other wise if you are developing with the Swift then try the latest release of Alamofire.

In both the libraries Networking is done asynchronously. Only difference is Alamofire is no longer supported on iOS 7 due to the lack of support for frameworks.

Priyal
  • 879
  • 1
  • 9
  • 30
Suraj Sonawane
  • 2,044
  • 1
  • 14
  • 24
9

AFNetworking:

  • This is the objective -C version of the library.
  • This is very powerful and you could install this in your Swift project and use it as a bridge to the swift project.

Alamofire:

  • This is the Swift version of AFNetworking.
  • But not all the features of AFNetworking are included.

If you are good at Objective-C use AFNetworking. If not, use Alamofire. It is simple and many resources are available for Swift.

Community
  • 1
  • 1
ireshika piyumalie
  • 2,226
  • 22
  • 22
5

AFNetworking is an Objective-C networking library for iOS, macOS and tvOS. It is a robust library that has been around for many years. From basic networking to advanced features such as Network Reachability and SSL Pinning, AFNetworking has it all. It is one of the most popular iOS libraries of all time with almost 50 million downloads.

Alamofire is AFNetworking’s successor but is written in Swift. The two libraries share a similar feature set, with the main difference being the language in which they are written.

If you are starting a brand new Swift project, my recommendation is to use Alamofire so that your core networking library is consistent with your own source code. Otherwise, both AFNetworking and Alamofire are great options.

Source : Raywenderlich

Amit Mishra
  • 51
  • 1
  • 2