검색결과 리스트
UIColor에 해당되는 글 1건
- 2012.12.06 UIColor를 RGB로 입력하기
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
#define UIColorFromRGBWithAlpha(rgbValue,a) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
blue:((float)(rgbValue & 0xFF))/255.0 alpha:a]
labelName.textColor = UIColorFromRGB(0xf4f4f4);
labelName.backgroundColor = UIColorFromRGBWithAlpha(0xf4f4f4, 1.0);
'-- iOS (iPhone)' 카테고리의 다른 글
WebView에서 맨 아래로 스크롤되었는지 확인 (0) | 2012.12.06 |
---|---|
Custom URL 지정 (0) | 2012.12.06 |
Automatic Reference Counting과 -fno-objc-arc (0) | 2012.12.06 |
AppDelegate의 정의된 함수 설명 (0) | 2012.12.06 |
unrecognized selector sent to instance (0) | 2012.11.23 |
RECENT COMMENT