728x90
반응형
아이폰&아이패드 화면사이즈별 이미지 변경 Prefix.pch를 이용하자
#ifdef UI_USER_INTERFACE_IDIOM()
#define IS_IPAD() (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#else
#define IS_IPAD() (false)
#endif
#define deviceFile(file, ext)
([[UIDevice currentDevice].model rangeOfString:@"iPad"].location != NSNotFound ? [NSString stringWithFormat:@"%@-iPad.%@", file, ext] :[NSString stringWithFormat:@"%@.%@", file, ext])
//아이패드 이면 820 아니면 310 리턴
#define spacing()(IS_IPAD() ? 820 : 310)
#define deviceWidth()(IS_IPAD() ? 1024 : 480)
#define deviceHeight()(IS_IPAD() ? 768 : 320)
//#define NSLog(format, ...)
#ifdef DEBUG
#else
#define NSLog(format, ...)
#endif
728x90
반응형
그리드형