使用Core Graphics繪製弧線段時我注意到零角度並不是我所期望的,所以要繪製像圖片一樣的段弧,我用330和210作爲起始值和結束值。繪製線段時零度
CGContextSetFillColorWithColor(ctx, [[UIColor grayColor] CGColor]);
CGContextMoveToPoint(ctx, 300, 300);
CGContextAddArc(ctx, 300, 300, 300, radians(330), radians(210), 1);
CGContextClosePath(ctx);
CGContextFillPath(ctx);
任何人都可以闡明這些數字的起源嗎?我實際上會期望像300和60這樣的東西......它可能與iPhone的軸旋轉有關嗎?