gpt4 book ai didi

带边框的 iOS 圆角 UIImage

转载 作者:可可西里 更新时间:2023-11-01 04:08:54 25 4
gpt4 key购买 nike

有没有办法让我的图像看起来像这样(圆角和浅色边框)。 enter image description here

我正在考虑制作一个中间透明的白色面具放在上面,这样行吗?

最佳答案

您可以完成此操作,但不要编辑您的 UIImage,只需在您的 UIImageView 中执行此操作即可。

首先,添加 QuartzCore 头文件

#import <QuartzCore/QuartzCore.h>

然后,根据需要编辑下面的属性。

imageView.layer.cornerRadius = 5.0;
imageView.layer.borderColor = [[UIColor grayColor] CGColor];
imageView.layer.borderWidth = 2.0;
imageView.layer.masksToBounds = YES;

关于带边框的 iOS 圆角 UIImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17959931/

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