336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
앱을 만들때 세로모드만 사용하여 가로모드를 막아야 할 경우 필요한 코드 입니다.
가르모드가 필요없는 뷰컨트롤러에 넣어 주면 적용됩니다.
(Objective-C 코드)
1 2 3 4 | - (NSUInteger) supportedInterfaceOrientations { return UIInterfaceOrientationMaskPortrait; //세로 화면만 허용 } | cs |
UIInterfaceOrientation 속성입니다.
UIInterfaceOrientationMaskPortrait //세로 화면만 허용
UIInterfaceOrientationMaskAll //전체 화면 허용
UIInterfaceOrientationMaskPortraitUpsideDown //거꾸로만 허용
UIInterfaceOrientationMaskLandscape; //가로화면만 허용
(Swift 코드)
1 2 3 | override func supportedInterfaceOrientations() -> UIInterfaceOrientationMask { return UIInterfaceOrientationMask.Portrait } | cs |
UIInterfaceOrientation 속성입니다.
UIInterfaceOrientationMask.Portrait //세로 화면만 허용
UIInterfaceOrientationMask.All //전체 화면 허용
UIInterfaceOrientationMask.PortraitUpsideDown //거꾸로만 허용
UIInterfaceOrientationMask.Landscape //가로화면만 허용
'iOS 프로그래밍 > iOS' 카테고리의 다른 글
iOS)사용 할 수 있는 폰트 패밀리명, 이름 가지고 오기 (0) | 2016.05.02 |
---|---|
iOS)위젯에서 앱 오픈하기 (0) | 2016.04.25 |
iOS)이미지에 색 넣기 (0) | 2016.03.03 |
iOS)위젯 왼쪽 여백 없애기 (0) | 2016.02.15 |
iOS)최상단에 있는 rootViewController 가져오기 (0) | 2016.01.14 |