画纸
CGContextRef context = UIGraphicsGetCurrentContext();
设置
CGContextSetLineWidth(context, 0.5);//宽?有问题
CGContextSetStrokeColorWithColor(context, [UIColor colorWith0xRGB:0xE3E3E3].CGColor);//颜色
画字
[text drawInRect:CGRectMake(x+1, y-1, width, heigt) withAttributes:txtDic];
画线
CGContextMoveToPoint(context, width*i, 0);//起点
CGContextAddLineToPoint(context, width*i, self.height);//第二个点
CGContextDrawPath(context, kCGPathStroke);/连线
画圆
CGContextAddArc(context, x, y+width/2, width, 0, 2*PI, 0);
画图
[image drawInRect:CGRectMake(60, 400, 60, 60)];
CGContextDrawImage(context, CGRectMake(160, 400, 60, 60), image.CGImage);
网友评论