gpt4 book ai didi

ios - 在图像周围画圈,比 xcode 中的图像大

转载 作者:行者123 更新时间:2023-11-29 00:47:10 25 4
gpt4 key购买 nike

我想在 UIImageView 上画一个圆:

+(UIImageView *) getRoundedImageView:(float)borderWidth :(UIImageView *)imageView :(UIColor *)borderColor{
imageView.layer.cornerRadius = imageView.frame.size.width/2.0;
imageView.layer.masksToBounds = true;
imageView.layer.borderWidth = borderWidth;
imageView.layer.borderColor = [borderColor CGColor];
return imageView;
}

它给了我这个:enter image description here我想在复选标记周围画一个带有一些空间的圆圈。如果增加 UIImageView 的尺寸,图像大小也会增加。

我试过申请

   UIImage* statusImage = [Utility getStatusImage:(status)];
UIImageView* statusImageView = [[UIImageView alloc] initWithFrame:CGRectMake(self.view.frame.size.width-40,17+5,25,25)];
statusImageView.contentMode = UIViewContentModeScaleAspectFit;

但这不起作用,我仍然得到一个带有更大复选标记的图像,并且图像和圆圈之间没有空格。

最佳答案

将您的 UIImageView 作为 subview 放入另一个 UIView 并放大此 UIView

或者更改您的 UIImageView contentMode 属性。

statusImageView.contentMode = UIViewContentModeCenter;

关于ios - 在图像周围画圈,比 xcode 中的图像大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38496855/

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