如何从分段控制的角落中去除多余的颜色?

时间:2013-10-04 08:16:18

标签: ios uisegmentedcontrol

enter image description here

如何去除segementedcontrol角落周围多余的颜色?

2 个答案:

答案 0 :(得分:1)

尝试更改角半径

[self. segmentedControl.layer setCornerRadius:5.0];

答案 1 :(得分:0)

将其背景颜色更改为透明:

self.segmentedControl.backgroundColor = [UIColor clearColor];

(如果可以的话,最好在XIB中进行)