gpt4 book ai didi

iphone - 如何绘制填充多边形?

转载 作者:行者123 更新时间:2023-12-03 18:56:33 25 4
gpt4 key购买 nike

我想知道如何使用 CoreGraphics 框架绘制填充多边形。

这是我试图绘制的示例:

enter image description here

我有 A、B、C、D、E、F 和 G。

你能建议我吗?

提前致谢。

最佳答案

- (void)drawRect:(CGRect)rect{      
CGContextRef context= UIGraphicsGetCurrentContext();
CGContextSetRGBStrokeColor(context, 0.0, 1.0, 0.0, 1.0);
CGContextSetLineWidth(context, 1.0);
CGContextMoveToPoint(context, 10, 50);
CGContextAddLineToPoint(context, 100, 80);
CGContextAddLineToPoint(context, 120, 120);
CGContextAddLineToPoint(context, 60, 80);
CGContextAddLineToPoint(context, 10, 50);
CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor);
CGContextFillPath(context);
}

关于iphone - 如何绘制填充多边形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8225870/

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