0
A
回答
0
試試這個,你會得到一些想法。
UIBezierPath *bezierPath = [UIBezierPath bezierPath];
[bezierPath addArcWithCenter:center radius:50 startAngle:0 endAngle:2 * M_PI clockwise:YES];
CAShapeLayer *progressLayer = [[CAShapeLayer alloc] init];
[progressLayer setPath:bezierPath.CGPath];
[progressLayer setStrokeColor:[UIColor colorWithWhite:1.0 alpha:0.2].CGColor];
[progressLayer setFillColor:[UIColor clearColor].CGColor];
[progressLayer setLineWidth:0.3 * self.bounds.size.width];
[progressLayer setStrokeEnd:volume/100];
[_circleView.layer addSublayer:progressLayer];
相關問題
- 1. UIBezierPath沒有繪製
- 2. 使用UIBezierPath繪製圓角使用UIBezierPath
- 3. 用UIBezierPath繪製一條線
- 4. UIBezierPath繪製線條表示
- 5. 在UIImageView上繪製UIBezierPath
- 6. 繪製餅圖與UIBezierPath
- 7. 繪製圓圈vhdl
- 8. UIBezierPath在前一個路徑上繪製?
- 9. 如何在CGLayer上繪製UIBezierPath?
- 10. 使用UIBezierPath繪製六邊形
- 11. 在swift中使用UIBezierPath繪製形狀
- 12. 使用UIBezierPath擦除繪製線條
- 13. 如何繪製可變寬度的UIBezierPath?
- 14. 在UIView :: drawRect()之外繪製UIBezierPath?
- 15. 用UIBezierPath繪製圖形曲線
- 16. 圍繞自定義UIBezierPath繪製圓
- 17. 沿着彎曲的UIBezierPath繪製漸變
- 18. 如何繪製平滑的UIBezierPath簽名?
- 19. 在代碼生成UIView上繪製UIBezierPath
- 20. UIBezierPath不會繪製圓角底部
- 21. 無效內容錯誤而繪製UIBezierPath
- 22. 如何繪製UIBezierPath並與之交互
- 23. 刪除UIBezierPath繪圖?
- 24. CSS3加載圈
- 25. 在Winform外繪製圓圈
- 26. 用php繪製圓圈imagemagick
- 27. 用圓圈繪製形狀
- 28. 繪製移動圓圈
- 29. JavaFX - 繪製甜甜圈
- 30. Pygame繪製/選擇圈
根據你的改變UI。 –