Reputation: 478
Is there any easy way to create circular progress indicator like apple app installer shows while installing new apps on iPhone?
I'm adding sample screenshot to help you understand.
Upvotes: 3
Views: 1120
Reputation: 3888
I would recommend you to use https://github.com/iwasrobbed/RPCircularProgress
lazy fileprivate var chartProgress: RPCircularProgress = {
let progress = RPCircularProgress()
progress.roundedCorners = false
progress.thicknessRatio = 1
return progress
}()
chartProgress.updateProgress(0.8, animated: false, initialDelay: 1)
Upvotes: 2