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设置所选段的文本色调?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)