用CGContextRef绘制基本图形

用CGContextRef绘制基本图形


- (void)drawRect:(CGRect)rect
{
CGContextRef ctx = UIGraphicsGetCurrentContext();     //获得当前画板
CGContextAddRect(ctx, rect);    // 画矩形
CGContextSetFillColor(ctx, CGColorGetComponents([self.bgColor CGColor])); //填充颜色
CGContextFillPath(ctx);  //设置填充的路径

}



CGContextAddEllipseInRect // 画椭圆

CGContextAddArc  // 画圆


Loading Disqus comments...
Table of Contents