CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineCap(context, kCGLineCapSquare);
CGContextSetLineWidth(context, rect.size.height * 0.05);
CGContextSetStrokeColorWithColor(context, [UIColor whiteColor].CGColor);
CGContextBeginPath(context);
CGContextMoveToPoint(context, rect.size.width - 0.7 * rect.size.height - 1, 0.2 * rect.size.height);
CGContextAddLineToPoint(context, rect.size.width - 0.35 * rect.size.height - 1, 0.6 * rect.size.height);
CGContextAddLineToPoint(context, rect.size.width - 1, 0.2 * rect.size.height);
CGContextStrokePath(context);
网友评论