gpt4 book ai didi

Swift - 在 UIButton 中嵌套的图像上设置圆角半径

转载 作者:可可西里 更新时间:2023-10-31 23:58:40 25 4
gpt4 key购买 nike

我有一个包含文本和图像的按钮,但我希​​望图像上有一个角半径。当我尝试将圆角半径应用到按钮时,它适用于我猜想是正确的整个按钮。如何改为将角半径设置为图像?

这是我的代码:

let titleButton = UIButton()
titleButton.frame = CGRect(x: 0, y: 0, width: 100, height: 40)
titleButton.setTitle("display name", for: .normal)
titleButton.setImage(#imageLiteral(resourceName: "imgName"), for: .normal)
titleButton.layer.masksToBounds = true
titleButton.layer.cornerRadius = titleButton.frame.width / 2

self.navigationItem.titleView = titleButton

最佳答案

UIButton 上有一个 UIImageView。所以要设置角,只需将半径设置为 ImageView 的图层

titleButton.imageView?.layer.cornerRadius = 5

关于Swift - 在 UIButton 中嵌套的图像上设置圆角半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45102107/

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