반응형
1. 세로 고정
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation ==UIInterfaceOrientationPortraitUpsideDown);
}
2. 가로 고정
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft|| interfaceOrientation ==UIInterfaceOrientationLandscapeRight);
}
반응형
'옛글 > 아이폰 프로그래밍' 카테고리의 다른 글
[iOS프로그래밍] XCode Singleton 개념잡기 (1) | 2012.05.04 |
---|---|
[iOS프로그래밍] 객체의 생성과 해제 (1) | 2012.05.03 |
[iOS프로그래밍] NSDictionary를 파헤쳐보자 (1) | 2012.05.03 |
[iOS프로그래밍] Xcode 4.2 Bad Access 오류는 NSZombieEnabled로 잡자! (1) | 2012.05.03 |
[iOS프로그래밍] Appdelegate (0) | 2012.05.03 |