gpt4 book ai didi

iphone - 如何在两点之间画线?

转载 作者:行者123 更新时间:2023-12-03 20:21:37 25 4
gpt4 key购买 nike

我想在我看来的两点之间画线,这怎么可能。?

编辑:ya thax.i 有解决方案。完美地绘制线条。我想用不同的点绘制多条线。我正在使用 for 循环,每次旋转都会传递起点和终点。但只绘制最后一个点。如何解决这个问题?

最佳答案

您需要使用一些 CoreGraphics 函数:

// get the current context
CGContextRef context = UIGraphicsGetCurrentContext();

// set the stroke color and width
CGContextSetRGBStrokeColor(context, 0.0, 0.0, 0.0, 1.0);
CGContextSetLineWidth(context, 2.0);

// move to your first point
CGContextMoveToPoint(context, 10.0, 10.0);

// add a line to your second point
CGContextAddLineToPoint(context, 50.0, 10.0);

// tell the context to draw the stroked line
CGContextStrokePath(context);

此示例将绘制一条粗细为 2 的水平白线。Apple 有一些很棒的示例代码和教程,包括 QuartzDemo 教程:http://developer.apple.com/iPhone/library/samplecode/QuartzDemo/index.html .

关于iphone - 如何在两点之间画线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1878821/

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