2013-05-16 1 views

답변

0

아래의 방법을 확인하십시오.

// 상술 iOS6의 필요성이

- (BOOL)shouldAutorotate 
{ 

return NO; // YES or NO as per your requirement 
} 

- (BOOL)supportedInterfaceOrientations 
{ 
return UIInterfaceOrientationLandscapeRight|UIInterfaceOrientationLandscapeLeft; 
} 
+0

감사 @ParthDubai 제가 '추가의 문제를 해결 [윈도우를 setRootViewController :의 ViewController] AppDelegate에있는' – oseres