我正在尝试设计XLPagerTabStrip控件,其中整体主题会随着标签的更改而发生变化。
以下是选项卡更改时调用的内容
changeCurrentIndexProgressive = { [weak self] (oldCell: ButtonBarViewCell?, newCell: ButtonBarViewCell?, progressPercentage: CGFloat, changeCurrentIndex: Bool, animated: Bool) -> Void in
guard changeCurrentIndex == true else { return }
oldCell?.label.textColor = .black
newCell?.label.textColor = UIColor.red
//Change the navigation bar's color
self?.navigationController?.navigationBar.barTintColor = UIColor.red
//Attempting to change the selected bar color
self?.settings.style.selectedBarBackgroundColor = UIColor.green
}
更改导航控制器颜色有效,但我无法从此处更改所选栏(或设置对象下的任何内容)?
一旦加载了视图,是否可以更改设置?
答案 0 :(得分:4)
代码检查
如果您检查代码Code Search for selectedBarBackgroundColor,那么您会发现这3个有趣的搜索结果:
BaseButtonBarPagerTabStripViewController#viewDidLoad
buttonBarView.selectedBar.backgroundColor = settings.style.selectedBarBackgroundColor
BarPagerTabStripViewController#viewDidLoad
barView.selectedBar.backgroundColor = settings.style.selectedBarBackgroundColor ?? barView.selectedBar.backgroundColor
ButtonBarPagerTabStripViewController#viewDidLoad
buttonBarView.selectedBar.backgroundColor = settings.style.selectedBarBackgroundColor
这意味着您需要在viewDidLoad之前设置BackgroundColor。
<强>问题强>
另请参阅此问题的答案:XLPagerTabStrip Issue #137:
实际上这不是问题。应在调用viewDidLoad之前配置设置。你能在自述文件中记录下来吗?
解决方法强>
buttonBarView
是一个公共var,也许你可以在设置指向此属性之外设置它:buttonBarView.selectedBar.backgroundColor