ios – 如何使用Swift设置所选段的文本色调?

ios – 如何使用Swift设置所选段的文本色调?,第1张

概述我使用以下代码来设置UISegmentedControl的背景. homeSegment.setDividerImage(UIImage(named: "seperator.png"), forLeftSegmentState: UIControlState.Normal, rightSegmentState: UIControlState.Normal, barMetrics: UIBarMet 我使用以下代码来设置UISegmentedControl的背景.
homeSegment.setdivIDerImage(UIImage(named: "seperator.png"),forleftSegmentState: UIControlState.normal,rightSegmentState: UIControlState.normal,barMetrics: UIbarMetrics.Default)homeSegment.setBackgroundImage(UIImage(named: "squareSegment.png"),forState: UIControlState.Selected,barMetrics: UIbarMetrics.Default)homeSegment.setBackgroundImage(UIImage(named: "squareSegment.png"),forState: UIControlState.normal,barMetrics: UIbarMetrics.Default)

如何设置所选分段的文本颜色?

解决方法 我通过使用setTitleTextAttributes来实现这一目标.下面的示例使用字典来设置属性,因为您最有可能想要同时设置字体类型和大小.尝试将此选定的段文本颜色设置为红色:
let segAttributes: NSDictionary = [       NSForegroundcolorAttributename: UIcolor.redcolor(),NSFontAttributename: UIFont(name: "Avenir-MediumOblique",size: 20)!]homeSegment.setTitleTextAttributes(segAttributes as [NSObject : AnyObject],forState: UIControlState.Selected)

例:

总结

以上是内存溢出为你收集整理的ios – 如何使用Swift设置所选段的文本色调?全部内容,希望文章能够帮你解决ios – 如何使用Swift设置所选段的文本色调?所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存