2014-02-10 5 views

답변

1

비슷한 질문 :

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{ 
    if (interfaceOrientation==UIInterfaceOrientationLandscapeLeft || interfaceOrientation==UIInterfaceOrientationLandscapeRight) 
     return YES; 

    return NO; 
} 
: how do you make an app ONLY support landscape?

이 방법은 위의 질문에 대해 답 하였다

0

프로젝트 설정에서 설정할 수 있습니다. xCode 5에서는 프로젝트 탐색기를 열고 프로젝트를 클릭 한 다음 일반 탭을 클릭하고 원하는 상자를 선택합니다.

관련 문제