Slide 50
Slide 50 text
CoreGraphics Arrow
CGContextMoveToPoint(cxt, start.x, start.y);
CGContextAddQuadCurveToPoint(cxt, control.x, control.y, end.x, end.y);
CGContextMoveToPoint(cxt, arrowSide1.x, arrowSide1.y);
CGContextAddLineToPoint(cxt, arrowSide2.x, arrowSide2.y);
CGContextAddLineToPoint(cxt, end.x, end.y);
CGContextRef cxt = UIGraphicsGetCurrentContext();