블로그 이미지
Sunny's

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

'RGB'에 해당되는 글 1

  1. 2012.02.25 iOS RGB 코드, 툴바 버튼추가 스크립트 사용하기
2012. 2. 25. 20:43 IPhone

전역에 define 해놓고 사용하면 편하다..^^

#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 BARBUTTON(TITLE, SELECTOR)     [[UIBarButtonItem alloc] initWithTitle:TITLE style:UIBarButtonItemStylePlain target:self action:SELECTOR]

posted by Sunny's
prev 1 next