-1
我正在繪製一個橢圓。我希望線條的顏色是透明的百分比。我發現了很多用於設置背景透明的示例,但我希望線條顏色本身可以說是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);
}
你能告訴我們你用什麼庫來繪製? – Luke
顯示迄今爲止繪製橢圓的代碼。 – rmaddy
如果您向我們展示代碼,可能會重新打開此問題 - 我們不擅長調試不存在的代碼。 – Undo