码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 十六进制配置背景颜色

时间:2015-04-16 17:47:49      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

给UIColor写一个延展:

#import <UIKit/UIKit.h>


@interface UIColor (color)


+ (UIColor*)colorWithHexString:(NSString*)hex;


+ (UIColor*)colorWithHexString:(NSString*)hex withAlpha:(CGFloat)alpha;


@end


//  Created by Dubai on 15/4/16.

//  Copyright (c) 2015 Dubai. All rights reserved.

//


#import "UIColor+FL.h"


@implementation UIColor (Ali)


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

{

    NSString *cString = [[hex stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString];

    

    // String should be 6 or 8 characters

    if ([cString length] < 6) return [UIColor grayColor];

    

    // strip 0X if it appears

    if ([cString hasPrefix:@"0X"]) cString = [cString substringFromIndex:2];

    

    if ([cString length] != 6) return  [UIColor grayColor];

    

    // Separate into r, g, b substrings

    NSRange range;

    range.location = 0;

    range.length = 2;

    NSString *rString = [cString substringWithRange:range];

    

    range.location = 2;

    NSString *gString = [cString substringWithRange:range];

    

    range.location = 4;

    NSString *bString = [cString substringWithRange:range];

    

    // Scan values

    unsigned int r, g, b;

    [[NSScanner scannerWithString:rString] scanHexInt:&r];

    [[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];

}


+ (UIColor*)colorWithHexString:(NSString*)hex withAlpha:(CGFloat)alpha

{

    NSString *cString = [[hex stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseString];

    

    // String should be 6 or 8 characters

    if ([cString length] < 6) return [UIColor grayColor];

    

    // strip 0X if it appears

    if ([cString hasPrefix:@"0X"]) cString = [cString substringFromIndex:2];

    

    if ([cString length] != 6) return  [UIColor grayColor];

    

    // Separate into r, g, b substrings

    NSRange range;

    range.location = 0;

    range.length = 2;

    NSString *rString = [cString substringWithRange:range];

    

    range.location = 2;

    NSString *gString = [cString substringWithRange:range];

    

    range.location = 4;

    NSString *bString = [cString substringWithRange:range];

    

    // Scan values

    unsigned int r, g, b;

    [[NSScanner scannerWithString:rString] scanHexInt:&r];

    [[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:alpha];

}



@end


用的时候 导入头文件:
直接可以使用:

    self.segControl.backgroundColor = [UIColor colorWithHexString:@"47a5d6"];


就ok了!

iOS 十六进制配置背景颜色

标签:

原文地址:http://blog.csdn.net/zhaoguodongios/article/details/45076007

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!