가로 고정 시
-(BOOL)shouldAutorotate
{
return YES;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationLandscape;
}
// Deprecated in iOS 6.0
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation == UIInterfaceOrientationLandscape) {
return YES;
}
return NO;
}
세로 고정 시
-(BOOL)shouldAutorotate
{
return YES;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}
// Deprecated in iOS 6.0
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if (interfaceOrientation == UIInterfaceOrientationPortrait) {
return YES;
}
return NO;
}
'프로그래밍 > iOS' 카테고리의 다른 글
[iOS] 변수 타입을 객체타입으로 바꾸기 (0) | 2015.04.08 |
---|---|
[iOS] 가속도계 센서 사용하기 (0) | 2015.04.08 |
[ios] 배터리 상태 확인하기 (0) | 2015.04.08 |
[ios] UILabel을 두줄 이상 나타내고 싶을때 + 아이폰 시스템 정보 표시 (0) | 2015.04.08 |
[iOS] NSUnknownKeyException (0) | 2015.04.08 |