ios – 如何在Swift中更改UISegmentedControl的选定段tintColor

ios – 如何在Swift中更改UISegmentedControl的选定段tintColor,第1张

概述我想在 Swift 3中更改UISegmentedControl选定段的tintColor. 我在 Objective-c中搜索了很多答案…… 这是我的代码: class ViewController:UIViewController{var segment:UISegmentedControloverride func viewDidLoad() {super.viewDidLoad( 我想在 Swift 3中更改UISegmentedControl选定段的tintcolor.
我在 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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1209524.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存