我看过很多关于为图片添加填充的帖子,但没有一个能够帮助我。如果你不能给我一个答案,你们中的任何人都可以引导我朝着正确的方向前进吗?
我有一个圆形的imageview。我想在显示边框之前在圆形图像视图周围添加空格,例如this
我该如何实现?提前致谢
答案 0 :(得分:0)
为此,我将UIImageView嵌入到UIView中。我设置约束,以便UIImageview始终在UIView内部一定距离。然后我给了UIView以下属性:
view.backgroundColor = nil
view.layer.cornerRadius = view.bounds.width / 2
view.layer.borderWidth = 1
view.layer.borderColor = UIColor.red.cgColor