StepProgressBar is a very simple and customizable step-by-step progress bar.
StepProgressBar is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'StepProgressBar'Copy the StepProgressBar.swift to your Xcode project. That should do it.
StepProgressBar can be used via code or interface builder.
- Drag
UIViewto your View Controller in the Storyboard. - Select your view and in the
Identity Inspectorchange the class toStepProgressBar.
⚠️ Importand - change the module toStepProgressBartoo.
- Customization
- Import
StepProgressBarin your view controller class.
import StepProgressBar- Create an
IBOutletof the view in your view controller class.
@IBOutlet weak var progressView: StepProgressBar!For Next step:
progressView.next()For Previous step:
progressView.previous()Use the traditional init methods and properties.
To run the example project, clone the repo, and run pod install from the Example directory first.
- iOS 8.0+
- Xcode 8.0+
- Swift 3.0+
SerhiiMatvieiev, [email protected]
StepProgressBar is available under the MIT license. See the LICENSE file for more info.


