画实心椭圆
CGRect textCountRect = CGRectMake(self.frame.size.width - size.width-10, 22, size.width, size.height);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSaveGState(context);
CGContextSetFillColorWithColor(context, [[UIColor redColor] CGColor]);
CGContextFillEllipseInRect(context, CGRectMake(textCountRect.origin.x, textCountRect.origin.y, textCountRect.size.width + 1, textCountRect.size.height + 2));
CGContextFillPath(context);
CGContextRestoreGState(context);
画圆
- // Drawing code CGContextRef context=UIGraphicsGetCurrentContext();
- CGContextSetLineWidth(context, width);
- CGContextSetStrokeColorWithColor(context, [[UIColor redColor] CGColor]);
- CGContextStrokeRect(context, CGRectMake(110.0, 110.0, 100.0, 100.0));
- CGContextStrokePath(context);