菜鸟教程小白 发表于 2022-12-12 22:56:16

ios - UIButton圆角时为什么会有粗糙的黑边?


                                            <p><p>我正在向导航栏添加一个 <code>UIButton</code>(带有背景图像)并设置带边框的圆角。我在拐角处看到一个奇怪的黑色轮廓:</p>

<p> <img src="/image/ugv4X.png" alt="enter image description here"/> </p>

<p>这是我用来从 <code>viewDidLoad</code> 创建按钮的代码:</p>

<pre><code>ProfileImageService *profileImageService = ;

CGRect frame = CGRectMake(0, 0, 32, 32);
UIButton *button = [ initWithFrame:frame];
;
;

button.layer.cornerRadius = button.frame.size.height / 2.0;
button.layer.masksToBounds = YES;
button.clipsToBounds = YES;
button.layer.borderWidth = 3;
button.layer.borderColor = .CGColor;

self.navigationItem.leftBarButtonItem = [ initWithCustomView:button];
</code></pre>

<p>如何使边框平滑并消除细微的黑色轮廓?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您看到的是您的个人资料图片(人的脸)从边缘渗出。这是因为边框是抗锯齿的,因此具有少量的透明度,配置文件图像可能会流血。 </p>

<p>由于您将个人资料图片和边框剪裁在一起,因此没有什么可以阻止个人资料图片穿过边框。 (即 clipsToBounds 不会将内容剪辑到边框内部;它会将所有内容剪辑到边框外部)您可以使用亮红色图像来证明这一点:您会看到亮红色边缘。</p>

<p>如果您可以事先将个人资料图片设置为圆形和正确的尺寸(离线或在代码中),那么您将避免此问题。</p>

<p>我看到的其他解决方案是实现您自己的 drawRect: 方法并自己进行绘图,或者创建按钮的另一个子层来保存以相同方式剪切但没有边框的图像。 (无论哪种方式,您可能需要为此制作自己的 UIControl 而不是使用 UIButton,因为操作按钮的图层可能会导致奇怪的行为。)</p>

<p>编辑:这里还有一些其他的解决方案:<a href="https://stackoverflow.com/questions/19565736/ios-rounded-rectangle-with-border-bleeds-color" rel="noreferrer noopener nofollow">iOS: Rounded rectangle with border bleeds color</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIButton圆角时为什么会有粗糙的黑边?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24106703/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24106703/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIButton圆角时为什么会有粗糙的黑边?