How to make rounded corner progress bar in swift?

前端 未结 5 1953
长情又很酷
长情又很酷 2021-01-03 21:24

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

5条回答
  •  悲&欢浪女
    2021-01-03 21:53

    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
        }
     }
    

提交回复
热议问题