#1.空心圆
CGContextRef ctx = UIGraphicsGetCurrentContext();
//设置空心圆的线条宽度 - 空心黄圆
CGContextSetLineWidth(ctx, 2);
//以矩形bigRect为依据画一个圆
CGContextAddEllipseInRect(ctx, bigRect);
//填充当前绘画区域的颜色
[[UIColor yellowColor] set];
//(如果是画圆会沿着矩形外围描画出指定宽度的(圆线)空心圆)/(根据上下文的内容渲染图层)
CGContextStrokePath(ctx);
#2.实心圆
//以矩形bigRect为依据画一个圆
CGContextAddEllipseInRect(ctx, bigRect);
[UIColorFromRGB(0x2953FF) set];
CGContextSetAlpha(ctx, 0.58);
CGContextFillPath(ctx);
网友评论