Description
A progressive download manager for Alamofire (Alamofire下载器)
Sequential Download(顺序下载 )
Downloading at the same time (同时下载)
Requirements
ALDownloadManager alternatives and similar libraries
Based on the "Network" category.
Alternatively, view ALDownloadManager alternatives based on common mentions on social networks and blogs.
-
Perfect
Server-side Swift. The Perfect core toolset and framework for Swift Developers. (For mobile back-end development, website and API development, and more…) -
SwiftSoup
SwiftSoup: Pure Swift HTML Parser, with best of DOM, CSS, and jquery (Supports Linux, iOS, Mac, tvOS, watchOS) -
Zewo
Lightweight library for web server applications in Swift on macOS and Linux powered by coroutines. -
BlueSocket
Socket framework for Swift using the Swift Package Manager. Works on iOS, macOS, and Linux. -
Connectivity
🌐 Makes Internet connectivity detection more robust by detecting Wi-Fi networks without Internet access. -
WKZombie
WKZombie is a Swift framework for iOS/OSX to navigate within websites and collect data without the need of User Interface or API, also known as Headless browser. It can be used to run automated tests / snapshots and manipulate websites using Javascript. -
PeerKit
An open-source Swift framework for building event-driven, zero-config Multipeer Connectivity apps -
Digger
Digger is a lightweight download framework that requires only one line of code to complete the file download task -
SOAPEngine
This generic SOAP client allows you to access web services using a your iOS app, Mac OS X app and AppleTV app.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ALDownloadManager or a related project?
README
ALDownloadManager
A progressive download manager for Alamofire (Alamofire下载器)
The default support breakpoint continues.
Sequential Download(顺序下载 )
Downloading at the same time (同时下载)
DownloadManager
Create a DownloadManager
Start downloading by default
ALDownloadManager.shared.download(url: downloadUrl)
Create a DownloadManager with progress.
Start downloading by default
ALDownloadManager.shared.download(url: downloadUrl)?.downloadProgress({ (progress) in
// update UI
}).downloadResponse({ (response) in
// DefaultDownloadResponse
})
Add progress Observers for the DownloadManager
info.progressChangeBlock = { (progress) in
}
Suspend the DownloadManager
The default support breakpoint continues.
ALDownloadManager.shared.suspend(url: downloadUrl)
Continue a suspended DownloadManager.
The default support breakpoint continues.
ALDownloadManager.shared.download(url: downloadUrl)
pod 'Alamofire'
As long as your project has Alamofire.
you can add AlamofireExtension.swift,ALDownloadManager.swift,ALDownloadInfo.swift to the project
Single file download (单文件下载)
ALDownloadManager.shared.download(url: self.testUrl)?.downloadProgress(nil).downloadResponse(nil)
Multi file download at the same time (多文件同时下载)
ALDownloadManager.shared.changeDownloadState()
Multi file sequential downloads (多文件顺序下载)
ALDownloadManager.shared.changeWaitState(completeClose: nil)
Requirements
iOS 9.0+
Xcode 8.0+
Swift 3.0+