如何以编程方式更改UIView上并在prototypeCell中显示的Image视图的borderWidth
我尝试在接口Builder中更改borderWidth,但无法正常工作。1
期待更好的解决方案。2
答案 0 :(得分:0)
您可以尝试这样
@IBOutlet weak var imageView: UIImageView!
// makes it circle if Width == Height
imageView.layer.cornerRadius = imageView.frame.width / 2
//Bordering
imageView.layer.borderColor = UIColor.black.cgColor
imageView.layer.borderWidth = 1