반응형
화면회전과 관련된 함수는 UIInterfaceOrientation이고 UIViewController에 상속되어 있다.
호출되는 함수
현재 디바이스의 모드가 어떤건지 확인 하는 함수
호출되는 함수
// Override to allow rotation. Default returns YES only for UIInterfaceOrientationPortrait
- shouldAutorotateToInterfaceOrientation
// Notifies when rotation begins, reaches halfway point and ends.
- willRotateToInterfaceOrientation
- didRotateFromInterfaceOrientation
- shouldAutorotateToInterfaceOrientation
// Notifies when rotation begins, reaches halfway point and ends.
- willRotateToInterfaceOrientation
- didRotateFromInterfaceOrientation
현재 디바이스의 모드가 어떤건지 확인 하는 함수
UIInterfaceOrientation orientation = [[UIDevice currentDevice] orientation];
if(UIDeviceOrientationIsPortrait(orientation))
{
//새로모드
}
else if(UIDeviceOrientationIsLandscape(orientation))
{
//가로모드
}
반응형
'Programming > iOS' 카테고리의 다른 글
현재 셋팅되어 있는 언어 (0) | 2011.11.17 |
---|---|
현재시간에서 초만 제거하기 (0) | 2011.11.16 |
Xcode4.2와 그 이하버전에서 iOS 5.0 분기문 처리 (0) | 2011.11.03 |
xCode4 지역화 (0) | 2011.10.25 |
현재 아이폰의 IP주소 알아내기 (0) | 2011.10.17 |