반응형
#import <UIKit/UIKit.h> @interface UIColor (Helper) + (UIColor *)colorWithRGBA:(NSUInteger)color; @end
#import "UIColor+Helper.h" @implementation UIColor (Helper) + (UIColor *)colorWithRGBA:(NSUInteger)color { return [UIColor colorWithRed:((color >> 24) & 0xFF) / 255.0f green:((color >> 16) & 0xFF) / 255.0f blue:((color >> 8) & 0xFF) / 255.0f alpha:((color) & 0xFF) / 255.0f]; } @end
반응형
'IPHONE' 카테고리의 다른 글
Creating a Glow Effect for UILabel and UIButton (0) | 2013.11.05 |
---|---|
scrollView 코드로 이동하기. (0) | 2013.10.25 |
ios Localization. (0) | 2013.10.11 |
@property의 어트리뷰트 설정. (0) | 2013.10.08 |
XCode4 단축키. (0) | 2013.09.12 |