반응형
LinkedIn
개발자로 성장하면서 남긴 발자취들을 확인하실 수 있습니다.
Github
WWDC Student Challenge 및 Cherish, Tiramisul 등 개발한 앱들의 코드를 확인하실 수 있습니다.
개인 앱 : Cherish
내 마음을 들여다보는 시간, 체리시는 디자이너와 PM과 함께 진행 중인 1인 개발 프로젝트입니다.
10년 후, 20년 후 나는 어떤 스토리 텔러가 되어 있을지 궁금하다. 내가 만약에 아직 조금 더 탐구하고 싶은 게 있고, 궁금한 게 있다면, 그게 설사 지금 당장의 내 인생에 도움이 안 되는 것 같더라도 경험해보자. 그 경험들을 온전히 즐기며 내 것으로 만들고, 내 일에 녹여내고... 그러다보면 그 점들이 모여 나란 사람을 그려내는 선이 될 테니까.
Recent Posts
Recent Comments
- Total
꿈꾸는리버리
[Error] iPad UIInterfaceOrientationPortrait, UIInterfaceOrientationPortraitUpsideDown, UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight 본문
오뚝이 개발자/Error 모음 (iOS)
[Error] iPad UIInterfaceOrientationPortrait, UIInterfaceOrientationPortraitUpsideDown, UIInterfaceOrientationLandscapeLeft, UIInterfaceOrientationLandscapeRight
rriver2 2024. 12. 3. 21:41반응형
🔧 문제 상황
아이패드 만들어 달라는 요청이 많아서 UI 작업하는 중... 웹 개발할 때 내가 세상에서 제일 싫어했던 Flexible layout이 다시 등장했다. 고민을 하던 중 우선 이렇게 앱의 크기를 임으로 바꿀 수 없도록 설정해서 배포를 하고, 이후에 수정해야지라고 생각했다.
내가 생각하기에 유저는 세로 iPad나 mac보다는 keyboard를 쓰고 싶은 거 같았거덩요 ~
💬 고민 Point
그래서 iPad 에서는 Landscape 만 사용할 수 있도록 수정했는데,
이런 에러 발생!!
Invalid bundle. The “UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight” orientations were provided for the UISupportedInterfaceOrientations Info.plist key in the Rivery.cherish.app bundle, but you need to include all of the “UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight” orientations to support iPad multitasking. For details, visit: https://developer.apple.com/documentation/bundleresources/information_property_list/uisupportedinterfaceorientations. (ID: c7716eef-d5e7-4378-b30c-04d11eea8355)
🌟 문제 해결
처음에는 "iPad 멀티태스킹을 지원하기 위해선 모든 orientations을 지원해야 한다용, LandscapeLeft, LandscapeRight만 지원해서 오류가 발생했음." 이라고 번역이 돼서 ipad하려면 모든 방향을 지원해야 하는 건가? 싶었는데, 구글링 해보니 이 친구를 체크해주면 된다구!
전체 화면으로만 가능하게 체크를 하니까 안전하게 아카이빙 됐다.
최고세요. 🫶🏻
반응형
'오뚝이 개발자 > Error 모음 (iOS)' 카테고리의 다른 글
[Error] git에서 modified 파일이 계속해서 남는 상황 (0) | 2024.12.15 |
---|---|
git fatal: Unable to create 'C:/file_path/.git/index.lock': File exists. (0) | 2024.06.27 |
[Multiple commands produce Error] 에러 때려잡자. (2) | 2024.04.19 |
[Error 해결] Undefined symbol: OBJC_CLASS$_ (0) | 2023.07.02 |
[Error 해결] SwiftUI Onone Swift optimization level to use previews (0) | 2023.06.13 |
Comments