UIView的width(40)和height(40)相等。
我尝试了这些,但是它们对我没有用:
countView?.clipsToBounds = true
self.countView?.layer.cornerRadius = min((countView?.frame.size.width)!, (countView?.frame.size.height)!)/2
还有
self.countView.layer.cornerRadius = (countView.frame.size.width)/2
谢谢
答案 0 :(得分:3)
除了@Stephan答案。
使用更少的代码:
self.countView.layer.cornerRadius = self.countView.bounds.size.height / 2
结果:
答案 1 :(得分:0)