gpt4 book ai didi

iphone - 如何为自定义类型 UIButton 设置矩形边框

转载 作者:太空狗 更新时间:2023-10-30 03:20:51 24 4
gpt4 key购买 nike

我正在尝试将图像设置为自定义 UIButton 的背景。我能够在界面生成器中为“圆角矩形”UIButton 设置背景图像,但现在边框消失了。有没有办法保留边界?另外,我想让边框显示为矩形而不是圆形。

最佳答案

    #import <QuartzCore/QuartzCore.h> // don't forget to add this in your file
CALayer * layer = [yourUIButton layer];
[layer setMasksToBounds:YES];
[layer setCornerRadius:0.0]; //when radius is 0, the border is a rectangle
[layer setBorderWidth:1.0];
[layer setBorderColor:[[UIColor grayColor] CGColor]];

我知道这是一个老问题,但我仍然想在这里发布我的答案。因为我一直在寻找答案,但自己以一种简单的方式解决了这个问题。

关于iphone - 如何为自定义类型 UIButton 设置矩形边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/854306/

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