使用 userDefaults 保存自定义背景颜色
Saving custom background color with userDefaults
我创建了一个带有一些按钮的网格,每个按钮都与特定颜色相关联并更改视图的背景颜色:
@IBOutlet weak var backgroundSelectionView: UIView!
override func viewDidLoad() {
super.viewDidLoad()
backgroundSelectionView.isHidden = true
backgroundSelectionView.isUserInteractionEnabled = false
backgroundGrid()
}
@IBAction func backgroundColor(_ sender: Any) {
if backgroundSelectionView.isHidden == true {
backgroundSelectionView.isHidden = false
backgroundSelectionView.isUserInteractionEnabled = true
} else {
backgroundSelectionView.isHidden = true
backgroundSelectionView.isUserInteractionEnabled = false
}
}
func backgroundGrid(){
blackButtonOutlet.layer.backgroundColor = #colorLiteral(red: 0, green: 0, blue: 0, alpha: 1)
blackButtonOutlet.layer.borderWidth = 1
blackButtonOutlet.layer.borderColor = UIColor.black.cgColor
}
@IBOutlet weak var blackButtonOutlet: UIButton!
@IBAction func blackButton(_ sender: Any) {
view.layer.backgroundColor = #colorLiteral(red: 0, green: 0, blue: 0, alpha: 1)
}
现在它工作正常,如果我按下按钮,它会设置背景,一切看起来都不错。唯一的问题是,当我在应用程序中导航或离开时,背景再次变为白色(默认)。我想用 userDefaults 设置它,我该怎么做?
我没有看到其他按钮和更改背景颜色的位置,但假设您使用的是 HeX 颜色表示,ypu 可以将背景颜色保存在共享首选项中,并始终使用共享状态来设置背景.
当您想将颜色保存到用户偏好时:UserDefaults.standard.set("#FF2200", forKey: "background_color_hex")
从 prefs 中检索背景颜色的十六进制表示:
let hexBackgroundColor = UserDefaults.standard.string(forKey: “background_color_hex”) ?? “#FFFFFF”
.
然后要使用它,你可以一个扩展来根据它的十六进制表示得到一个 UIColor 就像很多在线文章中解释的那样,以这个 https://www.hackingwithswift.com/example-code/uicolor/how-to-convert-a-hex-color-to-a-uicolor 为例:
view.backgroundColor = UIColor(hex: hexBackgroundColor)
我想还有很多其他解决方案,这是我想到的最快的解决方案。
我创建了一个带有一些按钮的网格,每个按钮都与特定颜色相关联并更改视图的背景颜色:
@IBOutlet weak var backgroundSelectionView: UIView!
override func viewDidLoad() {
super.viewDidLoad()
backgroundSelectionView.isHidden = true
backgroundSelectionView.isUserInteractionEnabled = false
backgroundGrid()
}
@IBAction func backgroundColor(_ sender: Any) {
if backgroundSelectionView.isHidden == true {
backgroundSelectionView.isHidden = false
backgroundSelectionView.isUserInteractionEnabled = true
} else {
backgroundSelectionView.isHidden = true
backgroundSelectionView.isUserInteractionEnabled = false
}
}
func backgroundGrid(){
blackButtonOutlet.layer.backgroundColor = #colorLiteral(red: 0, green: 0, blue: 0, alpha: 1)
blackButtonOutlet.layer.borderWidth = 1
blackButtonOutlet.layer.borderColor = UIColor.black.cgColor
}
@IBOutlet weak var blackButtonOutlet: UIButton!
@IBAction func blackButton(_ sender: Any) {
view.layer.backgroundColor = #colorLiteral(red: 0, green: 0, blue: 0, alpha: 1)
}
现在它工作正常,如果我按下按钮,它会设置背景,一切看起来都不错。唯一的问题是,当我在应用程序中导航或离开时,背景再次变为白色(默认)。我想用 userDefaults 设置它,我该怎么做?
我没有看到其他按钮和更改背景颜色的位置,但假设您使用的是 HeX 颜色表示,ypu 可以将背景颜色保存在共享首选项中,并始终使用共享状态来设置背景.
当您想将颜色保存到用户偏好时:UserDefaults.standard.set("#FF2200", forKey: "background_color_hex")
从 prefs 中检索背景颜色的十六进制表示:
let hexBackgroundColor = UserDefaults.standard.string(forKey: “background_color_hex”) ?? “#FFFFFF”
.
然后要使用它,你可以一个扩展来根据它的十六进制表示得到一个 UIColor 就像很多在线文章中解释的那样,以这个 https://www.hackingwithswift.com/example-code/uicolor/how-to-convert-a-hex-color-to-a-uicolor 为例:
view.backgroundColor = UIColor(hex: hexBackgroundColor)
我想还有很多其他解决方案,这是我想到的最快的解决方案。