본문 바로가기
프로그래밍 놀이터/iOS

[xcode] iPhone 단말 현재 orientation 구하는 세가지 방법.

by 돼지왕 왕돼지 2012. 10. 13.
반응형





iPhone 단말 현재 orientation 구하는 세 가지 방법.

1. UIInterfaceOrientation orientation = self.interfaceOrientation;
 - 이 함수는 UIViewController 클래스에서만 호출할 수 있습니다.


2. UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
 - 이는 어디서든 접근할 수 있으며, 가장 무난한 접근방법임.


3. UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
 - 이는 어디서든 접근할 수 있지만, UIDeviceOrientation 으로 return 되기 때문에 사용시 주의가 필요하다.



강추는 요녀석!!

UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];


도움이 되셨다면 손가락 꾸욱~ ( 로그인 필요 x )



반응형

댓글