KKProgressToolbar is an iOS drop-in class that displays a translucent UIToolbar with a progress indicator and some optional labels while work is being done in a background thread
A Swift package providing a customizable toolbar with a progress bar, title, and cancel button for iOS. Easily integrate progress tracking into your app’s UI with animated show/hide functionality.
Add APProgressToolbar
to your project via Swift Package Manager:
File > Add Package Dependency
.https://github.com/aporat/APProgressToolbar.git
main
) and add it to your target.Or, manually add it to your Package.swift
:
dependencies: [
.package(url: "https://github.com/aporat/APProgressToolbar.git", from: "1.0.0")
]
Then include it in your target:
.target(name: "YourTarget", dependencies: ["APProgressToolbar"])
class ViewController: UIViewController {
lazy fileprivate var loadingToolbar: APProgressToolbar = {
let view = APProgressToolbar()
view.progressBar.barBorderColor = .black
view.progressBar.barBackgroundColor = .black
view.progressBar.barBorderWidth = 1
view.progressBar.barFillColor = .white
view.isHidden = true
return view
}()
override func viewDidLoad() {
super.viewDidLoad()
loadingToolbar.actionDelegate = self
loadingToolbar.frame = CGRect(x: 0, y: view.bounds.size.height, width: view.bounds.size.width, height: 55)
view.addSubview(loadingToolbar)
}
@IBAction func showToolbar(_ sender: Any) {
loadingToolbar.show(true, completion: nil)
loadingToolbar.text = NSLocalizedString("Loading...", comment: "")
loadingToolbar.progressBar.progress = 0.5
}
@IBAction func hideToolbar(_ sender: Any) {
loadingToolbar.hide(true, completion: nil)
}
}
// MARK: - APProgressToolbarDelegate
extension ViewController: APProgressToolbarDelegate {
func didCancelButtonPressed(_ toolbar: APProgressToolbar) {
}
}