(iOS开发)根据字符串中的数值取出颜色

本文介绍了一种将十六进制颜色字符串转换为UIColor对象的方法。通过解析颜色字符串,将其拆分为红、绿、蓝三个部分,并使用NSScanner进行16进制扫描,最终创建并返回对应的UIColor对象。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

-(UIColor *)getColorFromString:(NSString *)colorString
{
    int colorInt=[colorString intValue];
    if(colorInt<0)
        return [UIColor whiteColor];
    NSString *nLetterValue;
    NSString *colorString16 =@"";
    int ttmpig;
    for (int i = 0; i<9; i++)
    {
        ttmpig=colorInt%16;
        colorInt=colorInt/16;
        switch (ttmpig)
        {
            case 10:
                nLetterValue =@"A";break;
            case 11:
                nLetterValue =@"B";break;
            case 12:
                nLetterValue =@"C";break;
            case 13:
                nLetterValue =@"D";break;
            case 14:
                nLetterValue =@"E";break;
            case 15:
                nLetterValue =@"F";break;
            default:
                nLetterValue=[[NSString alloc]initWithFormat:@"%i",ttmpig];
        }
        colorString16 = [nLetterValue stringByAppendingString:colorString16];
        if (colorInt == 0)
            break;
    }
    colorString16 = [[colorString16 stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString];
    //去掉前后空格换行符
    // strip 0X if it appears
    if ([colorString16 hasPrefix:@"0X"])
        colorString16 = [colorString16 substringFromIndex:2];
    if ([colorString16 hasPrefix:@"#"])
        colorString16 = [colorString16 substringFromIndex:1];
    // String should be 6 or 8 characters
    if ([colorString16 length] < 6)
    {
        int cc=6-[colorString16 length];
        for (int i=0; i<cc; i++)
            colorString16=[@"0" stringByAppendingString:colorString16];
    }
    if ([colorString16 length] != 6)
        return [UIColor whiteColor];        // Separate into r, g, b substrings
    NSRange range;
    range.location = 0;
    range.length = 2;
    NSString *bString = [colorString16 substringWithRange:range];
    range.location = 2;
    NSString *gString = [colorString16 substringWithRange:range];
    range.location = 4;
    NSString *rString = [colorString16 substringWithRange:range];
    // Scan values
    unsigned int r, g, b;
    [[NSScanner scannerWithString:rString] scanHexInt:&r];
    //扫描16进制到int
    [[NSScanner scannerWithString:gString] scanHexInt:&g];
    [[NSScanner scannerWithString:bString] scanHexInt:&b];
    return [UIColor colorWithRed:((float) r / 255.0f)                           green:((float) g / 255.0f)                            blue:((float) b / 255.0f)                           alpha:1.0f];
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值