UIProgressView 圆角

里面外面都变成圆角

不用图片

直接改变layer

重点是里面外面都是圆角哦

for (UIImageView * imageview in self.progress.subviews) {

        imageview.layer.cornerRadius = 5;

        imageview.clipsToBounds = YES;

    }

UIProgressView 圆角

相关文章:

  • 2021-12-26
  • 2021-08-13
  • 2021-08-01
  • 2021-04-13
  • 2021-08-11
  • 2021-06-29
  • 2022-03-07
猜你喜欢
  • 2021-04-23
  • 2022-02-10
  • 2022-02-26
  • 2022-12-23
  • 2021-05-30
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案