Here I Have tried to make Rounded Rect corner progress bar but I have some problem to create it, here I have post my code what I am tried?
Any one Give idea to custo
UIProgressView changed position of UIImageView which show current value of progress bar. I have small update to fix this issue
self.layer.cornerRadius = 12
self.clipsToBounds = true
for subview in subviews {
if let imageView = subview as? UIImageView {
imageView.layer.cornerRadius = 12
imageView.clipsToBounds = true
}
}