is there a way to disable Dark mode for system popup?

Hi All,


We are able to disable Dark mode within app, my question:

are there settings to disable some dialog popped up by system?


Like: Location access confirmation dialog, Phone Call dialog when initializing a call within app.


Thanks,

Replies

Choose one:

Add this to your Info.plist file:

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

OR

Add this to your AppDelegate.m:

if (@available(iOS 13.0, *)) {
rootView.overrideUserInterfaceStyle = UIUserInterfaceStyleLight;
}