【IOS类扩展之Hex值颜色转换】UIColor+Hex

[plain]  view plain  copy
  1. #import   
  2.   
  3. @interface UIColor (Hex)  
  4.   
  5. + (UIColor *)colorWithHex:(long)hexColor;  
  6. + (UIColor *)colorWithHex:(long)hexColor alpha:(float)opacity;  
  7.   
  8. @end  
  9.   
  10.   
  11. #import "UIColor+Hex.h"  
  12.   
  13. @implementation UIColor (Hex)  
  14.   
  15. + (UIColor*) colorWithHex:(long)hexColor;  
  16. {  
  17.     return [UIColor colorWithHex:hexColor alpha:1.];      
  18. }  
  19.   
  20. + (UIColor *)colorWithHex:(long)hexColor alpha:(float)opacity  
  21. {  
  22.     float red = ((float)((hexColor & 0xFF0000) >> 16))/255.0;  
  23.     float green = ((float)((hexColor & 0xFF00) >> 8))/255.0;  
  24.     float blue = ((float)(hexColor & 0xFF))/255.0;  
  25.     return [UIColor colorWithRed:red green:green blue:blue alpha:opacity];    
  26. }     
  27.   
  28. @end  

你可能感兴趣的:(iOS开发)