我想向 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 绘图逻辑。有什么想法吗?谢谢。