0
我想在視圖上繪製圖層。因爲我寫這個代碼。iOS層位置
arcLayer=[CAShapeLayer layer];
arcLayer.frame=self.circleView.frame;
arcLayer.backgroundColor = [UIColor purpleColor].CGColor;
[self.circleView.layer addSublayer:arcLayer];
但是這個圖層的位置在視圖上並不確切,如下圖所示。綠色的是圓形視圖,紫色的是弧形的圖層。
'arcLayer.frame = self.circleView.bounds' – user3386109 2014-12-03 07:06:26