我正在尝试创建一个圆形的UIView。与其他问题/答案一样,我使用了以下代码,但UIView看起来像足球一样(下图) "Football" UIView
这是我使用的代码:
@IBOutlet weak var backgroundView: UIView!
backgroundView.layer.cornerRadius = backgroundView.frame.size.width/2
backgroundView.clipsToBounds = true
backgroundView.layer.borderColor = hexStringToUIColor(hex: "0474bc").cgColor
backgroundView.layer.borderWidth = 2.0