如何自定义/更改分段控件中选定分段的颜色?我尝试使用UISegmentedControl selected segment color提供的方法。它适用于 iOS 5 及更低版本,但不适用于 iOS 6。感谢任何帮助。
基本上,我希望将所选分段的颜色更改为一些明亮的颜色,以便选定/未选定的分段清晰可见。
如何自定义/更改分段控件中选定分段的颜色?我尝试使用UISegmentedControl selected segment color提供的方法。它适用于 iOS 5 及更低版本,但不适用于 iOS 6。感谢任何帮助。
基本上,我希望将所选分段的颜色更改为一些明亮的颜色,以便选定/未选定的分段清晰可见。
我们使用了 siddarth 提到的方法。
子类化分段控制器并覆盖 drawrect() 方法。像这样的东西:
- (void)drawRect:(CGRect)rect
{
[super drawRect:rect];
for (int i=0; i<[self.subviews count]; i++)
{
if ([[self.subviews objectAtIndex:i]isSelected] )
{
UIColor *tintcolor=[UIColor redColor];
[[self.subviews objectAtIndex:i] setTintColor:tintcolor];
} else {
UIColor *tintcolor=[UIColor grayColor]; // default color
[[self.subviews objectAtIndex:i] setTintColor:tintcolor];
}
}
}
您可以覆盖该特定视图的子类,然后覆盖其 drawRect() 方法以使其在屏幕上自定义外观。