我在画一个椭圆。我希望线条颜色是透明的百分比。我找到了很多设置背景透明的例子,但我希望线条颜色本身是 50% 透明的。这可能吗?
这是代码:
-(void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 1.0);
CGContextSetStrokeColorWithColor(context, [UIColor greenColor].CGColor);
CGRect rectangle = CGRectMake(60,170,200,80);
CGContextAddEllipseInRect(context, rectangle);
CGContextStrokePath(context);
}