'orientation'에 해당되는 글 1건

  1. 2013.04.17 [iOS] interface orientation in iOS5, iOS6
Dev/iOS2013. 4. 17. 11:06

iOS6 으로 업데이트 되면서 기존의 shouldAutorotateToInterfaceOrientation 메소드가 deprecated 되었습니다.

iOS6 에서는 shouldAutorotate, supportedInterfaceOrientations, preferredInterfaceOrientationForPresentation 이렇게 3가지 메소드로 구현해야 합니다.

deployment taget 을 5.0 부터 하기 위해서는 iOS5 방식과 iOS6 방식 2가지 모두 구현하면 됩니다.

아래 코드 참고 하세요. (landscape 모드 설정 입니다)

  1. //iOS5 setting  
  2. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {  
  3.       
  4.     return (interfaceOrientation == UIInterfaceOrientationLandscapeRight) || (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);  
  5. }  
  6.   
  7. //iOS6 setting  
  8. - (BOOL)shouldAutorotate  
  9. {  
  10.     return YES;  
  11. }  
  12.   
  13. - (NSUInteger)supportedInterfaceOrientations  
  14. {  
  15.     return UIInterfaceOrientationMaskLandscape;  
  16. }  
  17.   
  18. - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {  
  19.       
  20.     return UIInterfaceOrientationLandscapeLeft;  
  21. }  
  22.     


Posted by 놀란