UIButton 的圆角半径问题

发布于 2024-11-01 09:33:38 字数 193 浏览 3 评论 0原文

我想为 UIButton 添加圆角半径。它工作正常,但当我向其中添加图像时出现问题。

它不会用图像圆角,图像以完整的矩形形式显示。

请看图片,我使用了红色的圆角半径,输出如下:

在此处输入图像描述

请帮助。

I want to add a corner radius to a UIButton. It is working fine but a problem occurs when I add image to it.

It does not round its corners with images, the image is shown in full rectangle form.

Please see the image, I have used the corner radius with red color and the output is as follow:

enter image description here

Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

挽清梦 2024-11-08 09:33:38

您是否尝试使用设置 maskToBounds: 属性?例如:

CALayer *layer = [myView layer];
[layer setMasksToBounds:YES];
[layer setCornerRadius:8.0];

这应该可以解决问题。

Did you try to use set the masksToBounds: property? Fore example:

CALayer *layer = [myView layer];
[layer setMasksToBounds:YES];
[layer setCornerRadius:8.0];

That should do the trick.

舟遥客 2024-11-08 09:33:38

您使用 -

myButton.imageView.layer.cornerRadius = 5;

但请确保您的图像尺寸与按钮尺寸完全相同。它对我有用。

you use -

myButton.imageView.layer.cornerRadius = 5;

but make sure that your image size is exact same as button size. its working for me.

似梦非梦 2024-11-08 09:33:38
yourButton.layer.cornerRadius = 10 //this value should be half of your button's height to make a circle
yourButton.clipsToBounds = true //this clips everything outside of bounds
yourButton.layer.cornerRadius = 10 //this value should be half of your button's height to make a circle
yourButton.clipsToBounds = true //this clips everything outside of bounds
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文