gpt4 book ai didi

带有方角的 iphone uibutton

转载 作者:行者123 更新时间:2023-12-03 19:31:35 27 4
gpt4 key购买 nike

如何以编程方式在 iPhone 应用程序中创建 UIButton 以具有方角。我不想有圆角。

最佳答案

将其按钮类型设置为 UIButtonTypeCustom,这样它就不会绘制圆角矩形,然后为 UIButton 的图层提供边框:

//you need this import
#import <QuartzCore/QuartzCore.h>

[button.layer setBorderColor: [[UIColor blackColor] CGColor]];
[button.layer setBorderWidth: 2.0];

关于带有方角的 iphone uibutton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3554160/

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