Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 한글
- iphone
- 티스토리 초대장
- Memory
- Database
- Eclipse
- MySQL
- Tomcat
- 인코딩
- spring
- ios
- JavaScript
- HTML
- 티스토리 초대
- Android
- encoding
- 톰켓
- 이클립스
- ipad
- jQuery
- 메모리
- UIWebView
- XML
- C#
- Objective C
- permgen space
- udp
- java
- WebView
- jsp
Archives
- Today
- Total
suroMind
[iOS] iPhone, iPad 가로, 세로 고정 본문
아이폰을 개발하다 보면 회전을 한다든지 세로 또는 가로 고정으로 해야 할 때가 있습니다.
아래 코드는 UIViewController 에서 모든 방향으로 회전이 가능한 코드입니다.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return YES;
}
UIInterfaceOrientationPortrait
UIInterfaceOrientationPortraitUpsideDown
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
return 값을 넘겨 줄때 해당 상황에 맞게 넘겨 주면 되겠지요
1. 세로 고정
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation ==UIInterfaceOrientationPortraitUpsideDown);
}
2. 가로 고정
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft|| interfaceOrientation ==UIInterfaceOrientationLandscapeRight);
}
'IT분야 > iOS' 카테고리의 다른 글
[iOS] Background Pattern Image 적용 (0) | 2012.02.08 |
---|---|
[iOS] 인코딩 변경 (UTF-8) (0) | 2012.02.08 |
[iOS] iOS App 개발용 Open Source 모음 (펌) (1) | 2012.02.05 |
[iOS]UIWebView에서 user-agent 변경 (0) | 2012.01.31 |
[iOS] UIScrollView를 이용한 Image Zoom in/out (0) | 2011.08.18 |
Comments