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]