gpt4 book ai didi

ios - 创建带有圆形边框 iOS 的 UIImageView

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:00:31 25 4
gpt4 key购买 nike

我正在尝试围绕我的 UIIMageView 创建边框,这是一个使用 cornerRadius 的完美圆。我看过的所有内容都说我的代码是正确的,但它返回的更多是菱形。 (我已经导入了 quartzCore,不确定是否需要)

image.layer.cornerRadius = (image.bounds.size.width/2);
image.layer.borderWidth = 5;
image.layer.borderColor = [UIColor whiteColor].CGColor;

有什么想法吗?

最佳答案

image.layer.cornerRadius = image.frame.size.width /2;
image.layer.masksToBounds = YES;
image.layer.borderWidth = 5;
image.layer.borderColor = [UIColor whiteColor].CGColor;

imageview 的高度和宽度必须相等

关于ios - 创建带有圆形边框 iOS 的 UIImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31321144/

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