티스토리 뷰

728x90
반응형

iOS13부터 다크모드 기능이 추가되었다.

 

다크모드를 대응해야 되는데 시간이 없다면?

혹은 내 앱을 새로 만드는데 다크모드까지 테스트 할 시간이 없다면?

앱을 라이트모드로만 실행되게 할 수 있다.

(참고로 라이트모드로만 실행되게 해 두면 애플 앱스토어 검증에서 통과가 안 될 수도 있을 것 같다.)

 

plist에 가서 아래 값만 추가해 주면 된다.

<key>UIUserInterfaceStyle</key>
<string>Light</string>

 

이 값에 대한 문서는 아래 링크를 참조하기 바란다.

https://developer.apple.com/documentation/uikit/uiuserinterfacestyle

 

UIUserInterfaceStyle - UIKit | Apple Developer Documentation

Enumeration UIUserInterfaceStyle Constants indicating the interface style for the app. Declarationenum UIUserInterfaceStyle : Int

developer.apple.com

 

 

728x90
반응형
댓글