我在 Objective-c中搜索了很多答案……
这是我的代码:
class VIEwController:UIVIEwController{var segment:UISegmentedControloverrIDe func vIEwDIDLoad() {super.vIEwDIDLoad()segment.insertSegment(withTitle: "AAA",at: 0,animated: true)segment.insertSegment(withTitle: "BBB",at: 1,animated: true)segment.insertSegment(withTitle: "CCC",at: 2,animated: true)segment.addTarget(self,action: #selector(changeValue),for: .valueChanged)segment.selectedSegmentIndex = 0vIEw.addSubvIEw(segment)} func changeValue(sender:AnyObject) { //I don't kNow how to do that change color when segment selected // }}
谢谢!
解决方法 以编程方式更改段的色调,segment.tintcolor = UIcolor.yellow
总结以上是内存溢出为你收集整理的ios – 如何在Swift中更改UISegmentedControl的选定段tintColor全部内容,希望文章能够帮你解决ios – 如何在Swift中更改UISegmentedControl的选定段tintColor所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)