gpt4 book ai didi

ios - 为 iOS 应用程序添加深色模式

转载 作者:IT王子 更新时间:2023-10-29 05:29:04 27 4
gpt4 key购买 nike

我正在尝试向我的应用程序添加一个主题(深色主题)。因此,当用户单击事件开关时,它会使整个应用程序进入黑暗模式。我已经对黑暗模式进行了硬编码,只是为了看看它会是什么样子;但是现在我希望能够通过 UISwitch 启用和禁用它,但我不确定该怎么做?

class DarkModeTableViewCell: UITableViewCell {

var DarkisOn = Bool()
let userDefaults = UserDefaults.standard


@IBOutlet var darkModeSwitchOutlet: UISwitch!

override func awakeFromNib() {
super.awakeFromNib()


}

override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)

// Configure the view for the selected state
}


@IBAction func darkModeSwitched(_ sender: Any) {

if darkModeSwitchOutlet.isOn == true {

//enable dark mode

DarkisOn = true

userDefaults.set(true, forKey: "DarkDefault")
userDefaults.set(false, forKey: "LightDefault")



} else {

//enable light mode
DarkisOn = false

userDefaults.set(false, forKey: "DarkDefault")
userDefaults.set(true, forKey: "LightDefault")
}

}



}



class DarkModeViewController: UIViewController {



func set(for viewController: UIViewController) {



viewController.view.backgroundColor = UIColor(red: 0.1, green: 0.1, blue: 0.1, alpha: 1.0)
viewController.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor: UIColor.white]
viewController.navigationController?.navigationBar.tintColor = UIColor.white
viewController.navigationController?.navigationBar.barStyle = UIBarStyle.black
viewController.tabBarController?.tabBar.barStyle = UIBarStyle.black






}
static let instance = DarkModeViewController()
}

然后我要做的是调用每个 View Controller 中的函数以查看它的外观,但是如果开关打开或关闭,我需要能够访问 bool 值让它执行该功能,否则只是保持不变。如果您有任何其他问题,请告诉我,我知道其中的一些问题可能没有多大意义。

最佳答案

更新:这个问题(因此,这个答案)是在 iOS 13 发布之前写的,因此它不使用 iOS 13 特定的 API。


我会使用通知(NSNotificationCenter API)来解决这个问题。

这个想法是在暗模式启用和禁用时实时通知您的 View Controller ,因此它们也可以实时适应变化。您不需要检查开关的状态或类似的东西。

首先创建两个通知(你也可以只创建一个,然后在 userInfo 字典中传入所需的主题,但在这种情况下创建两个通知更容易,因为你需要使用 Swift 强制转换等等)。

NotificationsName+Extensions.swift:

import Foundation

extension Notification.Name {
static let darkModeEnabled = Notification.Name("com.yourApp.notifications.darkModeEnabled")
static let darkModeDisabled = Notification.Name("com.yourApp.notifications.darkModeDisabled")
}

在所有“主题化” View Controller 上,收听这些通知:

    override func viewDidLoad() {
super.viewDidLoad()

// Add Observers
NotificationCenter.default.addObserver(self, selector: #selector(darkModeEnabled(_:)), name: .darkModeEnabled, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(darkModeDisabled(_:)), name: .darkModeDisabled, object: nil)
}

不要忘记在 deinit 中删除它们,因为向无效对象发送通知会引发异常:

deinit {
NotificationCenter.default.removeObserver(self, name: .darkModeEnabled, object: nil)
NotificationCenter.default.removeObserver(self, name: .darkModeDisabled, object: nil)
}

在您的“主题化” View Controller 中,实现 darkModeEnabled(_:)darkModeDisabled(_:):

@objc private func darkModeEnabled(_ notification: Notification) {
// Write your dark mode code here
}

@objc private func darkModeDisabled(_ notification: Notification) {
// Write your non-dark mode code here
}

最后,切换您的开关将触发任一通知:

@IBAction func darkModeSwitched(_ sender: Any) {

if darkModeSwitchOutlet.isOn == true {
userDefaults.set(true, forKey: "darkModeEnabled")

// Post the notification to let all current view controllers that the app has changed to dark mode, and they should theme themselves to reflect this change.
NotificationCenter.default.post(name: .darkModeEnabled, object: nil)

} else {

userDefaults.set(false, forKey: "darkModeEnabled")

// Post the notification to let all current view controllers that the app has changed to non-dark mode, and they should theme themselves to reflect this change.
NotificationCenter.default.post(name: .darkModeDisabled, object: nil)
}

}

这样,当“主题”发生变化时,您的所有 View Controller 都会收到实时通知,并且它们会做出相应的 react 。请注意,您需要采取措施在应用程序启动时显示正确的模式,但我确信您正在这样做,因为您正在使用 UserDefaults 并且可能会检查它们。还值得一提的是,NSNotificationCenter 不是线程安全的,尽管这无关紧要,因为无论如何,所有 UI 代码都应该放在主线程中。

更多信息,您可以查看NSNotificationCenter documentation .

注意:这段代码是建立在 OP 的基础上的。它可以简化(例如,您不需要同时跟踪“亮”和“暗”状态,只需跟踪一个)。

关于ios - 为 iOS 应用程序添加深色模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47500989/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com