gpt4 book ai didi

ios - 为什么 cornerRadius 给我一个菱形?

转载 作者:行者123 更新时间:2023-11-29 01:42:58 25 4
gpt4 key购买 nike

我正在尝试制作圆形个人资料图片,并按照本教程末尾设置的步骤 (http://valeriodonfrancesco.com/add-circular-mask-uiimage-easy-way/) 进行操作,但我一直在制作类似菱形的照片。我究竟做错了什么?这是我的代码

  @IBOutlet weak var profilePic: UIImageView!

override func viewDidLoad() {
super.viewDidLoad()

profilePic.layer.cornerRadius = profilePic.frame.size.width/2
profilePic.layer.masksToBounds = true
}

在此先感谢您的帮助!

最佳答案

请添加clipsToBounds

profilePic.layer.cornerRadius  = profilePic.frame.size.width/2
profilePic.layer.masksToBounds = true
profilePic.clipsToBounds = true // Add this line in your code

关于ios - 为什么 cornerRadius 给我一个菱形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32218141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com