iOS2012. 9. 4. 11:31

UIColor에 카테고리로 추가해서 사용합니다.


- 파일명 : UIColor+FWExtension.h

@interface UIColor (FWExtension)

+(UIColor *)colorWithRGB:(NSInteger)rgbValue;

@end


- 파일명 : UIColor+FWExtension.m

@implementation UIColor (FWExtension)

+(UIColor *)colorWithRGB:(NSInteger)rgbValue {

float redValue   = ((float)((rgbValue & 0xFF0000) >> 16)) / 255.0;

float greenValue = ((float)((rgbValue &   0xFF00) >>  8)) / 255.0;

float blueValue  = ((float)((rgbValue &     0xFF) >>  0)) / 255.0;

return [UIColor colorWithRed:redValue green:greenValue blue:blueValue alpha:1.0];

}

@end

Posted by 다오나무