如何在iOS中使用下划线创建分段控件

时间:2016-02-22 16:53:10

标签: ios objective-c uisegmentedcontrol

如何在iOS中使用下划线创建分段控件(如左图所示)?

据我所知,它与Android原生控件类似。 enter image description here

谢谢

1 个答案:

答案 0 :(得分:1)

UISegmentedControl包含用于自定义其外观的API。您可以使用-setBackgroundImage:forState:barMetrics:-setDividerImage:forLeftSegmentState:rightSegmentState:barMetrics:设置各种状态组合的图像。

您还可以使用-setTitleTextAttributes:forState:自定义文字。

可以在UISegmentedControl文档的Customizing Appearance部分找到这些方法。