1

我想向 UISegmentedControl 添加一个小彩色指示器(只是一个彩色矩形)。我以为我可以继承 UISegmentedControl 并在 initWithFrame 中添加该标志,如下所示:

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
        UIColor *first = [UIColor blueColor];
        UIColor *second = [UIColor orangeColor];

        UIView *firstView = [[UIView alloc] initWithFrame:CGRectMake(self.bounds.origin.x + 5, self.bounds.origin.y + 5, 10, self.bounds.size.height)];
        firstView.backgroundColor = first;

        [self addSubview:firstView];
    }
    return self;
}

当我实例化一个 CustomSegmentedControl 对象时,我只得到了蓝色矩形,但没有其他原始的 segmentedcontrol 绘图逻辑。有什么想法吗?谢谢。

4

1 回答 1

1

水晶,

是否可以将图像用于彩色矩形?如果是这样,你可以使用

- (void)setImage:(UIImage *)image forSegmentAtIndex:(NSUInteger)segment

添加图像。就像是

[segmentedControl setImage:[UIImage imageNamed:@"blueRectangle"] forSegmentAtIndex:0];

希望这可以帮助!

于 2012-04-30T22:29:09.103 回答