如何从模态 XIB 设置 VC 的背景颜色
How to set the background colour of VC from a modal XIB
在此应用中,我希望允许用户更改主菜单的背景颜色。
在 MenuVC 中,用户将单击标记为 "Choose a colour" 的按钮。 'ColorPickerVC' 将从 XIB 文件中模态呈现。
我为此创建了一个@IBAction 并包含以下代码:
@IBAction func colorPickerPressed = (_ sender: Any) {
let colorPicker = ColorPickerVC()
colorPicker.modalPresentationStyle = .custom
present(colorPicker, animated: false, completion: nil)
}
颜色选择器从 XIB 文件中以模态方式加载并以网格格式显示 9 种颜色 (UIButton)。
当用户点击一种颜色时,ColorPickerVC 的背景变为该颜色:
@IBAction func tile1(_ sender: Any) {
view.backgroundColor = tile1Color.backgroundColor
然后用户点击 'Confirm' 按钮,这会关闭视图并 returns 到 MenuVC:
@IBAction func confirmBtnPressed(_ sender: Any) {
dismiss(animated: false, completion: nil)
}
这是我正在努力解决的问题:
在 'ConfirmBtnPressed' 操作期间,我希望 MenuVC 背景颜色也更改为 ColorPickerVC 背景颜色(用户之前选择的颜色)
关于如何实现这一点有什么想法吗?
谢谢,
斯科特
最简单的方法……
当用户选择一种颜色时,将该颜色保存为用户默认值(因此它将持续存在而不是一次性颜色)。
在菜单VC的viewWillAppear
中读取用户默认颜色。
通常你会为这种事情使用委托协议,但考虑到它只是一种颜色并且可能需要记住该颜色用户默认值是更简单的方法(因为你必须在那里保存颜色在某个时候也把它读出来)
你应该了解委托模式:
首先创建一个定义所需功能的协议:
protocol ColorPickerProtocol: class {
func didSelectColor(_ color: UIColor)
}
使用该协议扩展您的 ViewController 并实施方法:
class BackgroundColorViewController: UIViewController, ColorPickerProtocol {
func didSelectColor(_ color: UIColor) {
view.backgroundColor = color
}
}
在您的 Xib 中创建一种方法来传递委托并在所需的 buttonPress 上调用 didSelectColor 函数:
class ColorPickerXib {
weak var delegate: ColorPickerProtocol?
@IBAction func dismissButtonPressed(_ sender: UIButton) {
delegate?.didSelectColor(color)
self.dismiss()
}
}
最后在 ViewController 中使用适当的委托实例化 Xib 并显示它:
let colorPicker = ColorPickerXib()
colorPicker.delegate = self
// Show Xib
在此应用中,我希望允许用户更改主菜单的背景颜色。 在 MenuVC 中,用户将单击标记为 "Choose a colour" 的按钮。 'ColorPickerVC' 将从 XIB 文件中模态呈现。
我为此创建了一个@IBAction 并包含以下代码:
@IBAction func colorPickerPressed = (_ sender: Any) {
let colorPicker = ColorPickerVC()
colorPicker.modalPresentationStyle = .custom
present(colorPicker, animated: false, completion: nil)
}
颜色选择器从 XIB 文件中以模态方式加载并以网格格式显示 9 种颜色 (UIButton)。
当用户点击一种颜色时,ColorPickerVC 的背景变为该颜色:
@IBAction func tile1(_ sender: Any) {
view.backgroundColor = tile1Color.backgroundColor
然后用户点击 'Confirm' 按钮,这会关闭视图并 returns 到 MenuVC:
@IBAction func confirmBtnPressed(_ sender: Any) {
dismiss(animated: false, completion: nil)
}
这是我正在努力解决的问题: 在 'ConfirmBtnPressed' 操作期间,我希望 MenuVC 背景颜色也更改为 ColorPickerVC 背景颜色(用户之前选择的颜色)
关于如何实现这一点有什么想法吗?
谢谢, 斯科特
最简单的方法……
当用户选择一种颜色时,将该颜色保存为用户默认值(因此它将持续存在而不是一次性颜色)。
在菜单VC的viewWillAppear
中读取用户默认颜色。
通常你会为这种事情使用委托协议,但考虑到它只是一种颜色并且可能需要记住该颜色用户默认值是更简单的方法(因为你必须在那里保存颜色在某个时候也把它读出来)
你应该了解委托模式:
首先创建一个定义所需功能的协议:
protocol ColorPickerProtocol: class {
func didSelectColor(_ color: UIColor)
}
使用该协议扩展您的 ViewController 并实施方法:
class BackgroundColorViewController: UIViewController, ColorPickerProtocol {
func didSelectColor(_ color: UIColor) {
view.backgroundColor = color
}
}
在您的 Xib 中创建一种方法来传递委托并在所需的 buttonPress 上调用 didSelectColor 函数:
class ColorPickerXib {
weak var delegate: ColorPickerProtocol?
@IBAction func dismissButtonPressed(_ sender: UIButton) {
delegate?.didSelectColor(color)
self.dismiss()
}
}
最后在 ViewController 中使用适当的委托实例化 Xib 并显示它:
let colorPicker = ColorPickerXib()
colorPicker.delegate = self
// Show Xib