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
And if you want to have rounded edges for the inner bar too, you can also add this code:
// Set the rounded edge for the outer bar
self.layer.cornerRadius = 12
self.clipsToBounds = true
// Set the rounded edge for the inner bar
self.layer.sublayers![1].cornerRadius = 12
self.subviews[1].clipsToBounds = true