Reputation: 221
I want to set the dark mode fixed for one UI element.
So I want that all the app switch automatically from dark to light but one element in my case a UISegmentedControl stays in dark mode.
Is it possible?
Upvotes: 2
Views: 409
Reputation: 10398
Yes, you can set overrideUserInterfaceStyle
on the control to .dark
.
Upvotes: 2