Skip to content

[#515] iPhone일때 UI가 화면에 꽉 차지 않는 현상을 해결한다#517

Merged
opficdev merged 4 commits into
developfrom
fix/#515-iPhone-UI
Jun 2, 2026
Merged

[#515] iPhone일때 UI가 화면에 꽉 차지 않는 현상을 해결한다#517
opficdev merged 4 commits into
developfrom
fix/#515-iPhone-UI

Conversation

@opficdev
Copy link
Copy Markdown
Owner

@opficdev opficdev commented Jun 2, 2026

🔗 연관된 이슈

🎯 의도

  • iPad에서 앱 윈도우를 줄였을 때 기존처럼 작은 크기까지 리사이징되지 않는 현상 해결

📝 작업 내용

📌 요약

  • App target의 explicit Info.plist에 iPad windowing 관련 누락 키 복원
  • iPhone은 portrait-only 유지, iPad는 all orientations 지원 설정

🔍 상세

  • UILaunchScreen 추가로 launch screen 요구사항 대응
  • UISupportedInterfaceOrientations는 iPhone portrait-only로 설정
  • UISupportedInterfaceOrientations~ipad는 iPad all orientations로 설정
  • UIApplicationSceneManifest, UIApplicationSupportsIndirectInputEvents 복원
  • Tuist 전환 이후 source Info.plist에서 누락된 App metadata 복원

📸 영상 / 이미지 (Optional)

@opficdev opficdev self-assigned this Jun 2, 2026
Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the Info.plist file for the DevLog application, adding key configurations such as the display name, encryption exemption status, application category, scene manifest, and supported interface orientations. The reviewer recommended removing the UIStatusBarStyle key if status bar customization is not required, as it is currently set to an empty string.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment on lines +68 to +69
<key>UIStatusBarStyle</key>
<string></string>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

UIStatusBarStyle 키의 값이 빈 문자열로 설정되어 있습니다. 상태 바 스타일을 커스텀하지 않는다면 이 키를 제거하는 것이 좋습니다.

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

반영 커밋

@opficdev opficdev merged commit 24c1921 into develop Jun 2, 2026
1 check passed
@opficdev opficdev deleted the fix/#515-iPhone-UI branch June 2, 2026 08:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

iPhone일때 UI가 화면에 꽉 차지 않는 현상을 해결한다

1 participant