如何使UISegmentedcontrol透明?

时间:2014-09-27 10:49:35

标签: ios objective-c xcode uinavigationcontroller

有人知道如何使UISegmentedControl透明吗?我设置了ViewController的背景主题和文本颜色。我目前在ViewDidLoad

中使用此代码
segGame.backgroundColor = [UIColor colorWithWhite:1.0 alpha:0.4];

有没有办法以编程方式或在xib中设置segmentedControl

2 个答案:

答案 0 :(得分:0)

您必须制作自定义分段控制器。

将此代码写入ViewDidLoad方法。没问题

请尝试这个:

// Set set segmentControl background to transparent

CGRect rect = CGRectMake(0, 0, 1, 1);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [[UIColor clearColor] CGColor]);
CGContextFillRect(context, rect);
UIImage *transparentImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

[segmentControl setBackgroundImage:transparentImage forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
[segmentControl setDividerImage:transparentImage forLeftSegmentState:UIControlStateNormal rightSegmentState:UIControlStateNormal barMetrics:UIBarMetricsDefault];

如果您使用此图像,那么它看起来比背景透明度

更好
  [segmentControl setDividerImage:[UIImage new] forLeftSegmentState:UIControlStateNormal rightSegmentState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
  [segmentControl setBackgroundImage:[UIImage new] forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];

试试这个。

答案 1 :(得分:0)

You can choose any colour for background in storyboard

故事板对于您想要做的事非常方便。看看screnshot。