I've two questions about dark mode on iOS.
I got rejected from App Store because the UI looked bad in dark mode, so my questions is..
- Is it required to use dark mode on an iOS app with iOS 13?
If it is required with dark mode, how can I set colors for a specific item? Parts of the app I'm using RGBa colors like the code below.
btn_walk.tintColor = UIColor.init(red: 63/255, green: 236/255, blue: 201/255, alpha: 1)
So how can I get this color to look good in dark mode? And how can I set dark-mode colors for a specific item like a textview or label?
Thanks in advance.
