gpt4 book ai didi

ios - iOS ScrollView 纹理背景颜色的 CSS 颜色代码

转载 作者:行者123 更新时间:2023-11-28 12:05:57 24 4
gpt4 key购买 nike

有人知道 CSS 颜色代码吗?我想为我的网页使用相同的颜色。谢谢!

最佳答案

ScrollView 纹理背景颜色是 kCGColorSpaceModelPattern 即它是一种模式。我不得不在我的 UIWebView 页面文本颜色中使用这种颜色,所以我将它转换成这样的颜色代码

UIColor *color =[UIColor scrollViewTexturedBackgroundColor];
const CGFloat *components = CGColorGetComponents(color.CGColor);
NSString *colorAsString = [NSString stringWithFormat:@"%f,%f,%f,%f", components[0], components[1], components[2], components[3]];

返回值 (1.000000,0.000000,0.000000,0.000000),颜色清晰。

我使用了某种形式的灰色替代颜色,类似于 scrollViewTexturedBackgroundColor。该颜色的颜色代码是

rgb(77,77,77)

你可以使用它,它可能会有所帮助。

关于ios - iOS ScrollView 纹理背景颜色的 CSS 颜色代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19716615/

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