为什么我没有在故事板中得到我想要的效果?

时间:2017-04-20 06:27:45

标签: ios storyboard uistoryboard

我将分段控件添加到故事板,但我没有得到我想要的结果。

这是我从故事板中添加的:

enter image description here

但是你可以看到这里有白色的角落。

我想要的效果是这样的:

enter image description here

2 个答案:

答案 0 :(得分:2)

将UISegmentedControl的Tint颜色设置为白色,如附加的屏幕截图所示 enter image description here

通过这个UISegmentedControl看起来像这样。

enter image description here

答案 1 :(得分:0)

通过类似

的代码更改分段控件的色调颜色

[[UISegmentedControl appearance] setTintColor:YOUR_COLOR];

OR

如果你有一个插座,那么就像这样 self.segmentedControl.tintColor = YOUR_COLOR;