作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在画线使用
CGMutablePathRef path = CGPathCreateMutable();
for (int i = 0; i < [_points count]; i++)
{
CGPoint pt = [[_points objectAtIndex:i] CGPointValue];
if (i == 0)
{
CGPathMoveToPoint(path, NULL, pt.x+1, pt.y+1);
}
else
{
CGPathAddLineToPoint(path, NULL, pt.x+1, pt.y+1);
}
}
CGContextSetLineWidth(context, 1.0f);
CGContextSetStrokeColorWithColor(context, curveColor.CGColor);
CGContextAddPath(context, path);
CGContextStrokePath(context);
CGPathRelease(path);
我可以在一个方向延伸线。但我想在一定程度上在两个方向(向上和向下)延伸这条线。如何双向延长线?
最佳答案
延伸一端:
[_points insertObject:newStartPoint atIndex:0];
和另一个:
[_points addObject:newEndPoint];
关于ios - 如何在两个方向上延伸使用 CGMutablePathRef 绘制的线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21025972/
我是一名优秀的程序员,十分优秀!