There are two iOS equivalents, one for UIBezierPath and one for CGPath :
UIBezierPath equivalent
UIBezierPath *path = [UIBezierPath bezierPath]; [path addArcWithCenter:centerPoint radius:radius startAngle:startAngle endAngle:endAngle clockwise:YES];
CGPath equivalent
CGMutablePathRef path = CGPathCreateMutable(); CGPathAddArc(path, NULL, centerPoint.x, centerPoint.y, radius, startAngle, endAngle, NO);
source share