gpt4 book ai didi

ios - 如何从 Plist 加载 UIColor

转载 作者:可可西里 更新时间:2023-11-01 03:08:22 25 4
gpt4 key购买 nike

关于在 Plist 中保存 UIColor:我尝试了不同的方法但无法做到,我想在 plist 文件中保存和检索颜色值。

我无法使用 nslog 提取颜色的数据值并将其保存在 plist 中。

还有其他方法吗?

最佳答案

我更喜欢使用字符串来存储颜色。执行此操作的解析代码如下所示(从 https://github.com/xslim/TKThemeManager/blob/master/TKThemeManager.m#L162 中截取)

+ (UIColor *)colorFromString:(NSString *)hexString {    
NSScanner *scanner = [NSScanner scannerWithString:hexString];
unsigned hex;
BOOL success = [scanner scanHexInt:&hex];

if (!success) return nil;
if ([hexString length] <= 6) {
return UIColorFromRGB(hex);
} else {
unsigned color = (hex & 0xFFFFFF00) >> 8;
CGFloat alpha = 1.0 * (hex & 0xFF) / 255.0;
return UIColorFromRGBA(color, alpha);
}
}

关于ios - 如何从 Plist 加载 UIColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4446653/

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