Developer/iOS

[iOS]기기가 가로인지 세로인지 판단하는 방법.

블로blow 2011. 6. 16. 08:25
728x90

UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];

if(!UIDeviceOrientationIsLandscape(orientation))

{

    //가로모드.

    

}else

{

    //세로모드.

    

}

728x90