Alamofire
Version: Alamofire 5.5.0 Source: Alamofire: README Digest Date: March 12, 2022
Alamofire is an HTTP networking library written in Swift.
Installation
CocoaPods
CocoaPods is a dependency manager for Cocoa projects. To integrate Alamofire into your Xcode project using CocoaPods, specify it in your Podfile:
Carthage
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate Alamofire into your Xcode project using Carthage, specify it in your Cartfile:
Swift Package Manager
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It is in early development, but Alamofire does support its use on supported platforms.
Once you have your Swift package set up, adding Alamofire as a dependency is as easy as adding it to the dependencies value of your Package.swift.
Manually
If you prefer not to use any of the aforementioned dependency managers, you can integrate Alamofire into your project manually.
Embedded Framework
Open up Terminal,
cdinto your top-level project directory, and run the following command "if" your project is not initialized as a git repository:Add Alamofire as a git submodule by running the following command:
Open the new
Alamofirefolder, and drag theAlamofire.xcodeprojinto the Project Navigator of your application's Xcode project.It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.
Select the
Alamofire.xcodeprojin the Project Navigator and verify the deployment target matches that of your application target.Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
In the tab bar at the top of that window, open the "General" panel.
Click on the
+button under the Embedded Binaries section.You will see two different
Alamofire.xcodeprojfolders each with two different versions of theAlamofire.frameworknested inside aProductsfolder.It does not matter which
Productsfolder you choose from, but it does matter whether you choose the top or bottomAlamofire.framework.Select the top
Alamofire.frameworkfor iOS and the bottom one for macOS.You can verify which one you selected by inspecting the build log for your project. The build target for
Alamofirewill be listed asAlamofire iOS,Alamofire macOS,Alamofire tvOS, orAlamofire watchOS.And that's it!
The
Alamofire.frameworkis automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.
Usage
Advanced Usage
URL Session - Session Manager, Session Delegate, Request
Routing - Routing Requests, Adapting and Retrying Requests
Model Objects - Custom Response Handlers
Advanced Concurrency - Swift Concurrency and Combine
Connection - Security, Network Reachability
Component Libraries
In order to keep Alamofire focused specifically on core networking implementations, additional component libraries have been created by the Alamofire Software Foundation to bring additional functionality to the Alamofire ecosystem.
AlamofireImage - An image library including image response serializers,
UIImageandUIImageViewextensions, custom image filters, an auto-purging in-memory cache, and a priority-based image downloading system.AlamofireNetworkActivityIndicator - Controls the visibility of the network activity indicator on iOS using Alamofire. It contains configurable delay timers to help mitigate flicker and can support
URLSessioninstances not managed by Alamofire.
Resourse
Last updated