Paul
Paul

Reputation: 1431

Opting out of Dark Mode with iOS 15 using Xcode 13

I'm attempting to opt my app out of dark mode as I'm not supporting dark mode yet. Following various threads I've been unable to figure out how to do this with Xcode 13.

Originally I followed Is it possible to opt-out of dark mode on iOS 13?, but seems like plist was removed in Xcode 13 Where is Info.plist in Xcode 13? (missing, not inside project navigator).

How do you opt out of dark mode with the plist now being removed in Xcode 13? Or please do correct me if I am wrong.

Thank you

Upvotes: 0

Views: 1090

Answers (1)

Paul
Paul

Reputation: 1431

For anyone else who lands here using Xcode 13. Here are the steps

  1. First, click on your project.

enter image description here

  1. Click on "Info"

enter image description here

  1. Click on the "+" on any Key to open a new K,V pair and add "Apperance" -> set value to "Light"

enter image description here

  1. Double check it exists in "Build Settings" under Info.plist Values under "User Interface Style" -> Light

enter image description here

Upvotes: 5

Related Questions