A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. + (UIColor*) colorWithHex:(NSInteger)hexValue alpha:(CGFloat)alphaValue
  2. {
  3.     return [UIColor colorWithRed:((float)((hexValue & 0xFF0000) >> 16))/255.0
  4.                            green:((float)((hexValue & 0xFF00) >> 8))/255.0
  5.                             blue:((float)(hexValue & 0xFF))/255.0 alpha:alphaValue];
  6. }

  7. + (UIColor*) colorWithHex:(NSInteger)hexValue
  8. {
  9.     return [UIColor colorWithHex:hexValue alpha:1.0];
  10. }

  11. + (NSString *) hexFromUIColor: (UIColor*) color {
  12.     if (CGColorGetNumberOfComponents(color.CGColor) < 4) {
  13.         const CGFloat *components = CGColorGetComponents(color.CGColor);
  14.         color = [UIColor colorWithRed:components[0]
  15.                                 green:components[0]
  16.                                  blue:components[0]
  17.                                 alpha:components[1]];
  18.     }
  19.      
  20.     if (CGColorSpaceGetModel(CGColorGetColorSpace(color.CGColor)) != kCGColorSpaceModelRGB) {
  21.         return [NSString stringWithFormat:@"#FFFFFF"];
  22.     }
  23.      
  24.     return [NSString stringWithFormat:@"#XXX", (int)((CGColorGetComponents(color.CGColor))[0]*255.0),
  25.                                                         (int)((CGColorGetComponents(color.CGColor))[1]*255.0),
  26.                                                         (int)((CGColorGetComponents(color.CGColor))[2]*255.0)];
  27. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马