iPhone(2)
-
UIDevice의 userInterfaceIdiom
UIDevice의 userInterfaceIdiom은 현재 디바이스가 ipad인지 iphone인지를 구분시켜주는 프로퍼티.해당 값이 UIUserInterfaceIdiomPad 이면 ipadUIUserInterfaceIdiomPhone이면 iphone을 나타낸다. if ([UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad){// 아이 패드}
2012.12.24 -
UIViewController 의 wantsFullScreenLayout 프로퍼티
아이폰에서는 statusbar 때문에 view가 항상 20px 아래에서부터 시작하게 된다.해당 프로퍼티를 YES로 선언해주면 0px부터 view가 시작할 수 있다.self.wantsFullScreenLayout = YES
2012.12.24