gpt4 book ai didi

ios - Objective-C:未显示按钮的边框颜色

转载 作者:行者123 更新时间:2023-11-28 21:07:52 29 4
gpt4 key购买 nike

我试图让按钮上的边框工作一段时间。

[self.accountButton.layer setBorderColor:(__bridge CGColorRef _Nullable)UIColorFromRGB( kGABrandingGreenColor )];

这就是颜色值的生成方式。

#define UIColorFromRGB(rgbValue) ([UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
blue:((float)(rgbValue & 0xFF))/255.0 \
alpha:1.0])

#define kGABrandingGreenColor (0x53C2BE)

我还没有在 stackoverflow 中找到可以解决我的问题的解决方案。

最佳答案

很简单

    #define UIColorFromRGB(rgbValue) \
[UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0x00FF00) >> 8))/255.0 \
blue:((float)((rgbValue & 0x0000FF) >> 0))/255.0 \
alpha:1.0]

#define kGABrandingGreenColor (0xBC1128)


[self.accountButton.layer setBorderWidth:3.0];
[self.accountButton.layer setBorderColor:[UIColorFromRGB(kGABrandingGreenColor) CGColor]];

关于ios - Objective-C:未显示按钮的边框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44791411/

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