画选中图标
by 伍雪颖
- (void)drawRect:(CGRect)rect
{
CGContextRef ctx =
UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx,
15,
4);
CGContextAddLineToPoint(ctx,
6,
13);
CGContextAddLineToPoint(ctx,
9,
16);
CGContextAddLineToPoint(ctx,
18,
7);
CGContextClosePath(ctx);
[[UIColor
clearColor]
setStroke];
[DARKCOLOR
setFill];
CGContextDrawPath(ctx,
kCGPathFillStroke);
CGContextRef ctx2 =
UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx2,
5,
7);
CGContextAddLineToPoint(ctx2,
2,
10);
CGContextAddLineToPoint(ctx2,
9,
16);
CGContextAddLineToPoint(ctx2,
12,
13);
CGContextClosePath(ctx2);
[[UIColor
clearColor]
setStroke];
[DARKCOLOR
setFill];
CGContextDrawPath(ctx2,
kCGPathFillStroke);
}
时间: 2025-01-05 09:03:05