AppDelegate.swift
if #available(iOS 13.0, *) {
window?.overrideUserInterfaceStyle = .light
}
これを書きましょう!
全体適用は ↑
application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool
画面ごとに切り替えたい場合は ↓
viewDidLoad()
UIViewController.swift
if #available(iOS 13.0, *) {
overrideUserInterfaceStyle = .light
}
参考: https://stackoverflow.com/questions/56537855/is-it-possible-to-opt-out-of-dark-mode-on-ios-13