我画了两个圆圈。它们被绘制出来,但有一条线将它们连接起来。如何删除它?这是我的代码:
//Background styling
CGContextSetRGBFillColor(context, 202.0/225.0, 255.0/225.0, 112.0/225.0, 1);
//Background setup
background = CGRectMake(1, 1, 1024, 786);
CGContextAddRect(context, background);
CGContextDrawPath(context, kCGPathFill);
//Styling
CGContextSetLineWidth(context, 2.0);
CGContextSetRGBStrokeColor(context, 0.0/225.0, 0.0/225.0, 225.0/225.0, 1);
CGContextSetRGBFillColor(context, 0.0/225.0, 0.0/255.0, 225.0/225.0, 1);
//first tower setup
CGContextAddArc(context, 200, 150, 10, 0, 2*3.14159265359, YES);
//second tower setup
CGContextAddArc(context, 800, 150, 10, 0, 2*3.14159265359, YES);
//Draw towers
CGContextDrawPath(context, kCGPathFillStroke);