gpt4 book ai didi

ios - 画一个实心半圆

转载 作者:可可西里 更新时间:2023-11-01 03:37:56 26 4
gpt4 key购买 nike

在 UIView 中绘制实心 (!) 半圆的最佳方法是什么?我试过 CGContextAddArc 函数,但它似乎没有提供填充。这是我喜欢画的东西 - 两个实心半圆。

enter image description here

最佳答案

CGContextBeginPath(gc);
CGContextAddArc(gc, 100, 100, 50, -M_PI_2, M_PI_2, 1);
CGContextClosePath(gc); // could be omitted
CGContextSetFillColorWithColor(gc, [UIColor cyanColor].CGColor);
CGContextFillPath(gc);

关于ios - 画一个实心半圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9950814/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com