I\'m creating a CAShapeLayer to use as a mask for a UIView\'s layer. I\'m using a UIBezierPath to draw the shape layer. It\'s working
Have a look at Figure 1 in the bezierPathWithArcCenter:radius:startAngle:endAngle:clockwise: documentation: For a "pie slice" in the upper right corner you have to use the parameters
startAngle:degreesToRadians(-90) endAngle:0 clockwise:YES
(The reason is that the default coordinate system on iOS has a x-axis pointing to the right, and a y-axis pointing down.)