zoukankan      html  css  js  c++  java
  • 16进制颜色转换

    + (UIColor *) colorWithHexString: (NSString *)color

    {

        NSString *cString = [[color stringByTrimmingCharactersInSet:[NSCharacterSetwhitespaceAndNewlineCharacterSet]] uppercaseString];

        

        if ([cString length] < 6) {

            return [UIColor clearColor];

        }

        

        if ([cString hasPrefix:@"0X"])

            cString = [cString substringFromIndex:2];

        if ([cString hasPrefix:@"#"])

            cString = [cString substringFromIndex:1];

        if ([cString length] != 6)

            return [UIColor clearColor];

        

        // 拆分

        NSRange range;

        range.location = 0;

        range.length = 2;

        

        //R

        NSString *rString = [cString substringWithRange:range];

        

        //G

        range.location = 2;

        NSString *gString = [cString substringWithRange:range];

        

        //B

        range.location = 4;

        NSString *bString = [cString substringWithRange:range];

        

        //Scan

        unsigned int r, g, b;

        [[NSScannerscannerWithString:rString] scanHexInt:&r];

        [[NSScannerscannerWithString:gString] scanHexInt:&g];

        [[NSScannerscannerWithString:bString] scanHexInt:&b];

        

        return [UIColor colorWithRed:((float) r / 255.0f) green:((float) g / 255.0f) blue:((float) b / 255.0f) alpha:1.0f];

    }

  • 相关阅读:
    c#命名空间
    MUTC 2 B Meeting point1 二分
    高斯消元模板
    MUTC 2 C Meeting point2 切比雪夫距离orz
    MUTC 2 E Save the dwarfs DP?
    Uva 10859 Placing Lampposts 树形dp
    Uva 11552 Fewest Flops 字符串dp
    Uva 10891 Game of Sum dp博弈
    MUTC 2 D Matrix 并查集
    Uva 1456 Cellular Network 概率dp
  • 原文地址:https://www.cnblogs.com/mohe/p/3745675.html
Copyright © 2011-2022 走看看