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
'iOS' 카테고리의 다른 글
navigationBar 이미지 설정하기와 iOS5, iOS4 (0) | 2012.09.04 |
---|---|
[UIBarButtonItem] UIBarButtonItem 이미지로 표현하기 (0) | 2012.09.04 |
[UIColor] RGB 값 사용하기 (RGB hexadecimal code사용) (0) | 2012.09.04 |
How to Customize UITabBar on iOS 5 (0) | 2012.09.04 |
[iOS] UIImage 이미지 비율에 맞춰 스케일 재조정하기 (0) | 2012.09.03 |