{"id":26917658,"url":"https://github.com/talebrafiepour/circularprogressstepper-ios","last_synced_at":"2026-02-23T15:02:45.464Z","repository":{"id":56905973,"uuid":"208317002","full_name":"TalebRafiepour/CircularProgressStepper-iOS","owner":"TalebRafiepour","description":"Circular Progress Stepper For Showing Progress Of A Process In Multiple Steps.","archived":false,"fork":false,"pushed_at":"2019-09-14T07:28:04.000Z","size":3056,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-19T21:06:39.030Z","etag":null,"topics":["circular","coreanimation","coregraphics","cps","ios","progress","progressbar","state","state-management","step","stepper","swift5"],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TalebRafiepour.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-09-13T17:49:29.000Z","updated_at":"2021-06-30T13:24:32.000Z","dependencies_parsed_at":"2022-08-20T19:20:13.619Z","dependency_job_id":null,"html_url":"https://github.com/TalebRafiepour/CircularProgressStepper-iOS","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalebRafiepour%2FCircularProgressStepper-iOS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalebRafiepour%2FCircularProgressStepper-iOS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalebRafiepour%2FCircularProgressStepper-iOS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalebRafiepour%2FCircularProgressStepper-iOS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TalebRafiepour","download_url":"https://codeload.github.com/TalebRafiepour/CircularProgressStepper-iOS/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246709906,"owners_count":20821298,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["circular","coreanimation","coregraphics","cps","ios","progress","progressbar","state","state-management","step","stepper","swift5"],"created_at":"2025-04-01T20:50:13.364Z","updated_at":"2025-10-25T01:34:04.880Z","avatar_url":"https://github.com/TalebRafiepour.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CircularProgressStepper-iOS\nCircular Progress Stepper For Showing Progress Of A Process In Multiple Steps.\n\n\u003cimg src=\"https://github.com/TalebRafiepour/CircularProgressStepper-iOS/blob/master/cps-iOS.gif\" width=\"300\"\u003e \n\n## Installation\n###  CocoaPods\nTo integrate CircularProgressStepper into your Xcode project using CocoaPods, specify it in your `Podfile`:\n```ruby\nplatform :ios, '9.0'\nuse_frameworks!\n\ntarget 'YourProjectName' do\n  pod 'CircularProgressStepper'\nend\n```\nAnd then remember to `import CircularProgressStepper` module before using it.\n\n###  Manually\nYou could directly copy and add the folder `CircularProgressStepper` which contains 'CircularProgressStepperView.swift' file to your project.   \n\n\n## Usage\nYou could use `CircularProgressStepperView` like you use `UIView`, create and layout it programmatically, or get everything done with Storyboard and XIB. Additionally, clone this [Demo](https://github.com/TalebRafiepour/CircularProgressStepper-iOS) project to find out how easy it is working. It also provides a way to cooperate with UIScrollView.\n### Programmatically\n```swift\n    //......\n    let circularProgressStepperView = CircularProgressStepperView()\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \n        self.circularProgressStepperView.frame = CGRect(x: 0, y: 50, width: 280, height: 100)\n        self.view.addSubview(self.circularProgressStepperView)\n        \n        self.circularProgressStepperView.numOfSteps = 5\n        self.circularProgressStepperView.currnetStep = 0\n    }\n    //......\n```\n\n### Customization (Optional)\nValues of following properties have been set as defaults already. Change them if they are not suitable for you.\n```swift\n    self.circularProgressStepperView.backgroundColor = UIColor(red: 179.0/255.0, green: 189.0/255.0, blue: 194.0/255.0, alpha: 1.0)\n    self.circularProgressStepperView.foregroundColor = UIColor(red: 0.0/255.0, green: 180.0/255.0, blue: 124.0/255.0, alpha: 1.0)\n    self.circularProgressStepperView.progressStrokeOffset = 3.0\n    self.circularProgressStepperView.padding = 10.0\n    self.circularProgressStepperView.stepSize = 24.0\n    self.circularProgressStepperView.numOfSteps = 5\n    \n    ////////////Or If You Want to Add CustomImage For Each Step\n  private let stepperImage = [UIImage(named: \"ic_one\")!,UIImage(named: \"ic_two\")!,UIImage(named: \"ic_three\")!,UIImage(named: \"ic_four\")!,UIImage(named: \"ic_five\")!]\n    self.circularProgressStepperView.stepsImage = stepperImage\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalebrafiepour%2Fcircularprogressstepper-ios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalebrafiepour%2Fcircularprogressstepper-ios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalebrafiepour%2Fcircularprogressstepper-ios/lists"}