결함 #13686
[KON] 가로모드 제한 건(iOS)
시작시간:
2025-08-11
완료기한:
진척도:
100%
추정시간:
버전:
앱버전:
디바이스:
MO_APP_iOS
요청자:
OS버전:
심각도:
중대한 결함(Major)
설명
[문제점]
My KON 메뉴 진입 > 가로모드 허용되어 있음.
[개선점]
My KON 메뉴 진입 > 가로모드 제한 필요. (기존 앱 동일 설정)
이력
#2 조정후이(가) 4일 전에 변경
- 상태을(를) 신규에서 진행(으)로 변경되었습니다.
- 담당자을(를) 조정후에서 박수민(으)로 변경되었습니다.
기존앱에서 My KON에서는 회전이 되고 있습니다.
코드를 추적해 보니
app delegate.m에 아래의 코드가 존재합니다. 이 내용에 대해 히스토리 파악이 필요합니다. @박수민 주임님
// 2023.09.14 seaonghyun_kim 기존 주석 처리 제거
// K.ON Player fullScreen 일때 가로 세로 지원, 가로모드 일때 하단 옵션 선택시 옵션 내용 나오지 않고 화면이 가로 세로로 움직이는 현상 수정
#if __IPHONE_OS_VERSION_MAX_ALLOWED < 90000
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
#else
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
#endif
{
return UIInterfaceOrientationMaskAll; //UIInterfaceOrientationMaskPortrait;
}