У меня есть пользовательский UIView, который рисует путь примерно так
- (void)drawRect:(CGRect)rect{
[[UIColor blackColor] setStroke];
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSetFillColor(ctx, CGColorGetComponents(self.color));
CGContextFillPath(ctx);
UIBezierPath *thePath = [UIBezierPath bezierPath];
thePath.lineWidth = _lineWidth;
_center = CGPointMake(rect.size.width, rect.size.height);
[thePath moveToPoint:_center];
[thePath addArcWithCenter:_center radius:rect.size.width startAngle:M_PI endAngle:M_PI+degreesToRadians(_angle)clockwise:YES];
[thePath closePath];
[thePath fill];
}
В моем пользовательском UIView также есть метод для изменения цвета заливки
- (void) changeColor:(UIColor *) newColor {
self.color = [newColor CGColor];
[self setNeedsDisplay];
}
Если я вызываю changeColor:метод с любым из предопределенных цветов, таких как
[UIColor redColor]
все работает отлично.Вместо этого, если я попытаюсь дать ему собственный цвет, такой как
UIColor* color = [UIColor colorWithRed:1.0f green:0.0f blue:0.0f alpha:1.0f];
, цвет моего произвольного мерцания UIView между белым, красным и синим случайным образом.
Есть идеи, почему это так?
Заранее спасибо!