본문 바로가기
프로그래밍 놀이터/iOS

[ios/code snippet] Phone 인지 Pad 인지 검사하기

by 돼지왕 왕돼지 2017. 11. 26.
반응형

[ios/code snippet] Phone 인지 Pad 인지 검사하기


https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDevice_Class/#//apple_ref/c/tdef/UIUserInterfaceIdiom


UIUserInterfaceIdiom userInterfcae = [UIDevice currentDevice].userInterfaceIdiom;

if ( userInterfcae == UIUserInterfaceIdiomPad ) {

     NSLog(@“This is Pad”);

} else if ( userInterfcae == UIUserInterfaceIdiomPhone ) {

     NSLog(@“This is Phone”);

} else if (userInterface == UIUserInterfaceIdiomTV ) {

     NSLog(@“This is TV”);

} else { // UIUserInterfaceIdiomUnspecified = -1

     NSLog(@“This is Unspecified”);

}




반응형

댓글