作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在SwiftUI分割选择器中设置选定的分割颜色,并将文本颜色更改为白色。
我尝试将两种修饰符用于选择器 View ,还尝试从外观代理中修改色调颜色。不幸的是,它们似乎都不起作用。
import SwiftUI
struct PickerView: View {
@State var pickerSelection = 0
init() {
UISegmentedControl.appearance().tintColor = UIColor.blue
}
var body: some View {
Picker(selection: $pickerSelection, label: Text("")) {
Text("Active").tag(0).foregroundColor(Color.white)
Text("Completed").tag(1)
}.pickerStyle(SegmentedPickerStyle()).foregroundColor(Color.orange)
}
}
最佳答案
从beta 3开始,可以使用selectedSegmentTintColor
更改所选段的颜色。
要更改textColor
,应将setTitleTextAttributes
用于.selected
状态和.normal
状态(未选中)。
因此它将像:
init() {
UISegmentedControl.appearance().selectedSegmentTintColor = .blue
UISegmentedControl.appearance().setTitleTextAttributes([.foregroundColor: UIColor.white], for: .selected)
UISegmentedControl.appearance().setTitleTextAttributes([.foregroundColor: UIColor.blue], for: .normal)
}
关于ios - 如何在SwiftUI分段选择器中更改选定的分段颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57735761/
我是一名优秀的程序员,十分优秀!