gpt4 book ai didi

ios - 设置 TextView 边框颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:48:05 26 4
gpt4 key购买 nike

我想为我的 UITextView 边框设置银色。我试过这个:

theGroupTextLabel.layer.borderWidth = 3.5f;
theGroupTextLabel.layer.borderColor = [[UIColor whiteColor] CGColor];

...但是在颜色选项中只有一些颜色,如 whiteColor、BlackColor、Green...

如果我想要白银怎么办?

最佳答案

您需要为自定义颜色使用 RGB 值;

CGFloat nRed=128.0/255.0;
CGFloat nBlue=98.0/255.0;
CGFloat nGreen=53.0/255.0;
UIColor *myColor=[[UIColor alloc]initWithRed:nRed green:nBlue blue:nGreen alpha:1];

Choose RGB Values Here

R:193 G:205 B:205 附近的东西接近白银

关于ios - 设置 TextView 边框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13960039/

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