본문 바로가기

iPhone

ios 화면 회전상태 확인 코드, os 버전 확인 코드

화면 회전

   UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

        if(!UIDeviceOrientationIsLandscape(orientation))

        {

            //가로

        }else{

            //세로

        }


버전 확인

 if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0

       {

       }