gpt4 book ai didi

ios - UIImageView 的层边框可见插图

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

刚刚做了这个:

self.imageView.backgroundColor = color1;
self.imageView.layer.masksToBounds = YES;
self.imageView.layer.borderColor = color1;
self.imageView.layer.borderWidth = 3.0;

问题截图如下:

Screenshot of a problem

我可以看到图像、边界和边界外的图像片段……

enter image description here enter image description here

我该如何解决?

最佳答案

我在图层上使用边框属性时遇到了类似的问题,并设法通过在顶部添加 CAShapeLayer 来解决它。
我无法告诉你它在旧设备上的表现如何,因为还没有用很多动画等测试它,但我真的怀疑它会减慢它们的速度。

这里是 Swift 中的一些代码:

    imageView.backgroundColor = UIColor(red: 0.1137, green: 0.2745, blue: 0.4627, alpha: 1.0)
imageView.layer.masksToBounds = true
imageView.layer.cornerRadius = imageView.bounds.height / 2.0

let stroke:CAShapeLayer = CAShapeLayer()
let rect = imageView.bounds
let strokePath = UIBezierPath(roundedRect: rect, cornerRadius: imageView.bounds.height / 2.0)

stroke.path = strokePath.CGPath
stroke.fillColor = nil
stroke.lineWidth = 3.0
stroke.strokeColor = UIColor(red: 0.1137, green: 0.2745, blue: 0.4627, alpha: 1.0).CGColor

stroke.frame = imageView.bounds
imageView.layer.insertSublayer(stroke, atIndex: 1)

希望它也适用于你的情况

关于ios - UIImageView 的层边框可见插图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28434313/

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