#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]
* 사용법: UIColor color = UIColorFromRGB(0xF7F7F7);
출처 : http://lambert.tistory.com/428
'프로그래밍 > iOS' 카테고리의 다른 글
앱스토어로 페이지 이동시키기 (0) | 2011.04.18 |
---|---|
orient, Orientation, orientation, 회전, 뷰회전 처리 (0) | 2011.04.08 |
개발시 유용한 자료모음 (0) | 2011.04.08 |
여러가지 Util (0) | 2011.03.29 |
xcode 라이브러리 모음 (0) | 2011.03.24 |