UIButton 的圆角半径问题
我想为 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:
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否尝试使用设置 maskToBounds: 属性?例如:
这应该可以解决问题。
Did you try to use set the masksToBounds: property? Fore example:
That should do the trick.
您使用 -
但请确保您的图像尺寸与按钮尺寸完全相同。它对我有用。
you use -
but make sure that your image size is exact same as button size. its working for me.