美文网首页YYKit学习YYKit源码探究
YYKit源码探究(三十四) —— UIColor分类之Retr

YYKit源码探究(三十四) —— UIColor分类之Retr

作者: 刀客传奇 | 来源:发表于2018-03-29 19:06 被阅读35次

    版本记录

    版本号 时间
    V1.0 2018.03.29

    前言

    iOS圈内有几个人大家基本都知道,比如说王巍、唐巧,还有YYKit框架的作者现任职于滴滴的郭曜源 - ibireme等。这里有一篇唐巧对他的专访,还有他的 GitHub - Yaoyuan博客,这里贴出来框架YYKit 框架。接下来几篇我们就一起来看一下这个框架。感兴趣的可以看上面写的几篇。
    1. YYKit源码探究(一) —— 基本概览
    2. YYKit源码探究(二) —— NSString分类之Hash(一)
    3. YYKit源码探究(三) —— NSString分类之Encode and decode(二)
    4. YYKit源码探究(四) —— NSString分类之Drawing(三)
    5. YYKit源码探究(五) —— NSString分类之Regular Expression(四)
    6. YYKit源码探究(六) —— NSString分类之NSNumber Compatible(五)
    7. YYKit源码探究(七) —— NSString分类之Utilities(六)
    8. YYKit源码探究(八) —— NSNumber分类(一)
    9. YYKit源码探究(九) —— UIFont分类之架构分析和Font Traits(一)
    10. YYKit源码探究(十) —— UIFont分类之Create font(二)
    11. YYKit源码探究(十一) —— UIFont分类之Load and unload font(三)
    12. YYKit源码探究(十二) —— UIFont分类之Dump font data(四)
    13. YYKit源码探究(十三) —— UIImage分类之框架结构和Create image部分(一)
    14. YYKit源码探究(十四) —— UIImage分类之Image Info(二)
    15. YYKit源码探究(十五) —— UIImage分类之Modify Image(三)
    16. YYKit源码探究(十六) —— UIImage分类之Image Effect(四)
    17. YYKit源码探究(十七) —— UIImageView分类之架构和image部分(一)
    18. YYKit源码探究(十八) —— UIImageView分类之highlight image部分(二)
    19. YYKit源码探究(十九) —— UIScreen分类(一)
    20. YYKit源码探究(二十) —— UIScrollView分类(一)
    21. YYKit源码探究(二十一) —— UITableView分类(一)
    22. YYKit源码探究(二十二) —— UITextField分类(一)
    23. YYKit源码探究(二十三) —— UIView分类(一)
    24. YYKit源码探究(二十四) —— UIPasteboard分类(一)
    25. YYKit源码探究(二十五) —— UIGestureRecognizer分类(一)
    26. YYKit源码探究(二十六) —— UIDevice分类框架及Device Information(一)
    27. YYKit源码探究(二十七) —— UIDevice分类之Network Information(二)
    28. YYKit源码探究(二十八) —— UIDevice分类之Disk Space(三)
    29. YYKit源码探究(二十九) —— UIDevice分类之Memory Information(四)
    30. YYKit源码探究(三十) —— UIDevice分类之CPU Information(五)
    31. YYKit源码探究(三十一) —— UIControl分类(一)
    32. YYKit源码探究(三十二) —— UIColor分类之Create a UIColor Object(一)
    33. YYKit源码探究(三十三) —— UIColor分类之Get color's description(二)

    回顾

    上一篇主要介绍了UIColor的Get color's description分类,这一篇主要看一下Retrieving Color Information分类部分。


    API

    下面我们就一起看一下API文档部分。

    /**
     Returns the components that make up the color in the HSL color space.
     
     @param hue         On return, the hue component of the color object,
                        specified as a value between 0.0 and 1.0.
     
     @param saturation  On return, the saturation component of the color object,
                        specified as a value between 0.0 and 1.0.
     
     @param lightness   On return, the lightness component of the color object,
                        specified as a value between 0.0 and 1.0.
     
     @param alpha       On return, the alpha component of the color object,
                        specified as a value between 0.0 and 1.0.
     
     @return            YES if the color could be converted, NO otherwise.
     */
    - (BOOL)getHue:(CGFloat *)hue
        saturation:(CGFloat *)saturation
         lightness:(CGFloat *)lightness
             alpha:(CGFloat *)alpha;
    
    /**
     Returns the components that make up the color in the CMYK color space.
     
     @param cyan     On return, the cyan component of the color object,
                     specified as a value between 0.0 and 1.0.
     
     @param magenta  On return, the magenta component of the color object,
                     specified as a value between 0.0 and 1.0.
     
     @param yellow   On return, the yellow component of the color object,
                     specified as a value between 0.0 and 1.0.
     
     @param black    On return, the black component of the color object,
                     specified as a value between 0.0 and 1.0.
     
     @param alpha    On return, the alpha component of the color object,
                     specified as a value between 0.0 and 1.0.
     
     @return         YES if the color could be converted, NO otherwise.
     */
    - (BOOL)getCyan:(CGFloat *)cyan
            magenta:(CGFloat *)magenta
             yellow:(CGFloat *)yellow
              black:(CGFloat *)black
              alpha:(CGFloat *)alpha;
    
    /**
     The color's red component value in RGB color space.
     The value of this property is a float in the range `0.0` to `1.0`.
     */
    @property (nonatomic, readonly) CGFloat red;
    
    /**
     The color's green component value in RGB color space.
     The value of this property is a float in the range `0.0` to `1.0`.
     */
    @property (nonatomic, readonly) CGFloat green;
    
    /**
     The color's blue component value in RGB color space.
     The value of this property is a float in the range `0.0` to `1.0`.
     */
    @property (nonatomic, readonly) CGFloat blue;
    
    /**
     The color's hue component value in HSB color space.
     The value of this property is a float in the range `0.0` to `1.0`.
     */
    @property (nonatomic, readonly) CGFloat hue;
    
    /**
     The color's saturation component value in HSB color space.
     The value of this property is a float in the range `0.0` to `1.0`.
     */
    @property (nonatomic, readonly) CGFloat saturation;
    
    /**
     The color's brightness component value in HSB color space.
     The value of this property is a float in the range `0.0` to `1.0`.
     */
    @property (nonatomic, readonly) CGFloat brightness;
    
    /**
     The color's alpha component value.
     The value of this property is a float in the range `0.0` to `1.0`.
     */
    @property (nonatomic, readonly) CGFloat alpha;
    
    /**
     The color's colorspace model.
     */
    @property (nonatomic, readonly) CGColorSpaceModel colorSpaceModel;
    
    /**
     Readable colorspace string.
     */
    @property (nullable, nonatomic, readonly) NSString *colorSpaceString;
    

    下面我们就一起看一下这个API

    1. - (BOOL)getHue:(CGFloat *)hue saturation:(CGFloat *)saturation lightness:(CGFloat *)lightness alpha:(CGFloat *)alpha;

    返回组成HSL颜色空间的颜色分量,如果颜色可以转换返回YES,否则返回NO。

    方法实现

    - (BOOL)getHue:(CGFloat *)hue
        saturation:(CGFloat *)saturation
         lightness:(CGFloat *)lightness
             alpha:(CGFloat *)alpha {
        CGFloat r, g, b, a;
        if (![self getRed:&r green:&g blue:&b alpha:&a]) {
            return NO;
        }
        YY_RGB2HSL(r, g, b, hue, saturation, lightness);
        *alpha = a;
        return YES;
    }
    

    2. - (BOOL)getCyan:(CGFloat *)cyan magenta:(CGFloat *)magenta yellow:(CGFloat *)yellow black:(CGFloat *)black alpha:(CGFloat *)alpha;

    返回组成CMYK颜色空间的颜色分量,如果颜色可以转换返回YES,否则返回NO。

    方法实现

    - (BOOL)getCyan:(CGFloat *)cyan
            magenta:(CGFloat *)magenta
             yellow:(CGFloat *)yellow
              black:(CGFloat *)black
              alpha:(CGFloat *)alpha {
        CGFloat r, g, b, a;
        if (![self getRed:&r green:&g blue:&b alpha:&a]) {
            return NO;
        }
        YY_RGB2CMYK(r, g, b, cyan, magenta, yellow, black);
        *alpha = a;
        return YES;
    }
    

    3. @property (nonatomic, readonly) CGFloat red;

    RGB颜色空间中的R分量,值为0.0 ~ 1.0。

    方法实现

    - (CGFloat)red {
        CGFloat r = 0, g, b, a;
        [self getRed:&r green:&g blue:&b alpha:&a];
        return r;
    }
    

    4. @property (nonatomic, readonly) CGFloat green;

    RGB颜色空间中的G分量,值为0.0 ~ 1.0。

    方法实现

    - (CGFloat)green {
        CGFloat r, g = 0, b, a;
        [self getRed:&r green:&g blue:&b alpha:&a];
        return g;
    }
    

    5. @property (nonatomic, readonly) CGFloat blue;

    RGB颜色空间中的B分量,值为0.0 ~ 1.0。

    方法实现

    - (CGFloat)blue {
        CGFloat r, g, b = 0, a;
        [self getRed:&r green:&g blue:&b alpha:&a];
        return b;
    }
    

    6. @property (nonatomic, readonly) CGFloat hue;

    HSB颜色空间中的H分量,值为0.0 ~ 1.0。

    方法实现

    - (CGFloat)hue {
        CGFloat h = 0, s, b, a;
        [self getHue:&h saturation:&s brightness:&b alpha:&a];
        return h;
    }
    

    7. @property (nonatomic, readonly) CGFloat saturation;

    HSB颜色空间中的S分量,值为0.0 ~ 1.0。

    方法实现

    - (CGFloat)saturation {
        CGFloat h, s = 0, b, a;
        [self getHue:&h saturation:&s brightness:&b alpha:&a];
        return s;
    }
    

    8. @property (nonatomic, readonly) CGFloat brightness;

    HSB颜色空间中的B分量,值为0.0 ~ 1.0。

    方法实现

    - (CGFloat)brightness {
        CGFloat h, s, b = 0, a;
        [self getHue:&h saturation:&s brightness:&b alpha:&a];
        return b;
    }
    

    9. @property (nonatomic, readonly) CGFloat alpha;

    颜色的alpha分量,值为0.0 ~ 1.0。

    方法实现

    - (CGFloat)alpha {
        return CGColorGetAlpha(self.CGColor);
    }
    

    10. @property (nonatomic, readonly) CGColorSpaceModel colorSpaceModel;

    获取颜色的colorspace model

    方法实现

    - (CGColorSpaceModel)colorSpaceModel {
        return CGColorSpaceGetModel(CGColorGetColorSpace(self.CGColor));
    }
    

    11. @property (nullable, nonatomic, readonly) NSString *colorSpaceString;

    获取颜色空间的字符串。

    方法实现

    - (NSString *)colorSpaceString {
        CGColorSpaceModel model =  CGColorSpaceGetModel(CGColorGetColorSpace(self.CGColor));
        switch (model) {
            case kCGColorSpaceModelUnknown:
                return @"kCGColorSpaceModelUnknown";
                
            case kCGColorSpaceModelMonochrome:
                return @"kCGColorSpaceModelMonochrome";
                
            case kCGColorSpaceModelRGB:
                return @"kCGColorSpaceModelRGB";
                
            case kCGColorSpaceModelCMYK:
                return @"kCGColorSpaceModelCMYK";
                
            case kCGColorSpaceModelLab:
                return @"kCGColorSpaceModelLab";
                
            case kCGColorSpaceModelDeviceN:
                return @"kCGColorSpaceModelDeviceN";
                
            case kCGColorSpaceModelIndexed:
                return @"kCGColorSpaceModelIndexed";
                
            case kCGColorSpaceModelPattern:
                return @"kCGColorSpaceModelPattern";
                
            default:
                return @"ColorSpaceInvalid";
        }
    }
    

    后记

    本篇主要讲述了Retrieving Color Information部分,感兴趣的可以点赞和关注~~~

    相关文章

      网友评论

      本文标题:YYKit源码探究(三十四) —— UIColor分类之Retr

      本文链接:https://www.haomeiwen.com/subject/yqlvcftx.html