- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 iOS 编程的新手,我想在我的绘图应用程序中添加一个消失的荧光笔。目标是允许用户选择荧光笔并在屏幕上圈出一些东西。大约 15 秒后,我希望圆圈淡化并消失,留下原始绘图。我从绘图应用程序教程中获得了一些入门代码。它的工作原理如下——
允许用户通过触摸屏幕画一条线。这是通过在 touches begins/touches moved/touches ended 中构造一个 UIBezierPath
来实现的。每次完成路径时,都会将其绘制到图像上并保存图像。绘制新线条时,它们会添加到背景图像中。撤消/重做堆栈分开保存,以允许用户更正错误。
我尝试在单独的图层中实现淡入淡出路径,并使用 CABasicAnimation
通过更改其不透明度来淡化荧光笔,然后在不透明度达到 0 时移除图层。现在荧光笔是在屏幕上绘图,但一旦用户抬起他/她的手指,它就会立即消失。有什么想法可以使它正确淡出并保留底层图像的撤消/重做堆栈吗?
- (void)drawRect:(CGRect)rect
{
if(incrementalImage){
[incrementalImage drawInRect:rect];
}
[self.strokeColor setStroke];
[path setLineWidth:[self.strokeSize floatValue]];
[path stroke];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
ctr = 0;
UITouch *touch = [touches anyObject];
pts[0] = [touch locationInView:self];
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
CGPoint p = [touch locationInView:self];
ctr++;
pts[ctr] = p;
if (ctr == 4)
{
pts[3] = CGPointMake((pts[2].x + pts[4].x)/2.0, (pts[2].y + pts[4].y)/2.0); // move the endpoint to the middle of the line joining the second control point of the first Bezier segment and the first control point of the second Bezier segment
[path moveToPoint:pts[0]];
[path addCurveToPoint:pts[3] controlPoint1:pts[1] controlPoint2:pts[2]]; // add a cubic Bezier from pt[0] to pt[3], with control points pt[1] and pt[2]
[self setNeedsDisplay];
// replace points and get ready to handle the next segment
pts[0] = pts[3];
pts[1] = pts[4];
ctr = 1;
}
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[self drawBitmap];
[self setNeedsDisplay];
[path removeAllPoints];
ctr = 0;
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
[self touchesEnded:touches withEvent:event];
}
- (void)drawBitmap
{
CABasicAnimation *fadeAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"];
UIGraphicsBeginImageContextWithOptions(self.bounds.size, YES, 0.0);
if (!incrementalImage) // first time this is called it shout paint background white
{
UIBezierPath *rectpath = [UIBezierPath bezierPathWithRect:self.bounds];
[[UIColor whiteColor] setFill];
[rectpath fill];
}
// each time through, you should paint the background with the stored background
if(self.strokeColor)
[incrementalImage drawAtPoint:CGPointZero];
// time to branch based on the characteristics of the stroke color.
// If the stroke has alpha less than 1, the pen is a highlighter and should vanish over time.
[self.strokeColor getRed:&red green:&green blue:&blue alpha:&alpha];
if(alpha == 1.0) {
[imageHistoryArray addObject:UIGraphicsGetImageFromCurrentImageContext()];
[self.strokeColor setStroke];
[path stroke];
incrementalImage = UIGraphicsGetImageFromCurrentImageContext();
} else{
disappearingLayer = [CALayer layer];
disappearingLayer.frame = self.bounds;
[self.layer addSublayer:disappearingLayer];
fadeAnimation.fromValue = [NSNumber numberWithFloat: 0.5];
fadeAnimation.toValue = [NSNumber numberWithFloat: 0.0];
fadeAnimation.duration = 15;
[disappearingLayer addAnimation:fadeAnimation forKey:@"opacity"];
disappearingLayer.opacity = 0.0;
}
UIGraphicsEndImageContext();
}
- (void) undoLastStroke
{
if([imageHistoryArray count]>0)
{
[imageRedoArray addObject:incrementalImage];
incrementalImage = [imageHistoryArray lastObject];
[imageHistoryArray removeLastObject];
[self setNeedsDisplay];
}
}
- (void) redoStroke
{
if([imageRedoArray count]>0)
{
[imageHistoryArray addObject:incrementalImage];
incrementalImage = [imageRedoArray lastObject];
[imageRedoArray removeLastObject];
[self setNeedsDisplay];
}
}
我已经使用 CAShapeLayer 解决了这个问题。这是修改后的代码
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[self.strokeColor getRed:&red green:&green blue:&blue alpha:&alpha];
if(alpha > 0.99){
[self drawBitmap];
} else{
[self drawVanishingPath];
}
[self setNeedsDisplay];
[path removeAllPoints];
ctr = 0;
}
- (void)drawVanishingPath
{
disappearingLayer = [[CAShapeLayer alloc] init];
disappearingLayer.strokeColor = self.strokeColor.CGColor;
disappearingLayer.fillColor = [UIColor clearColor].CGColor;
disappearingLayer.lineWidth = [self.strokeSize floatValue];
disappearingLayer.path = path.CGPath;
[self.layer addSublayer:disappearingLayer];
[fadeAnimation setValue:disappearingLayer forKey:@"parentLayer"];
[disappearingLayer addAnimation:fadeAnimation forKey:@"opacity"];
}
花了一些时间才摆脱了笔画中心令人讨厌的阴影。我确定这条路正在被填满。由于颜色的 alpha 小于 1,因此填充和描边一起作用以在路径的中心创建一个较暗的区域。将填充颜色设置为清除解决了这个问题。
最佳答案
这是我经过大量搜索和一些帮助后发现的解决方案。这与我在上面输入的内容相同。我没有意识到我被允许回答我自己的问题。希望这会显示为现在的答案。我还在这段代码中包含了 Matt 的修复。
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
[self.strokeColor getRed:&red green:&green blue:&blue alpha:&alpha];
if(alpha > 0.99){
[self drawBitmap];
} else{
[self drawVanishingPath];
}
[self setNeedsDisplay];
[path removeAllPoints];
ctr = 0;
}
- (void)drawVanishingPath
{
disappearingLayer = [[CAShapeLayer alloc] init];
disappearingLayer.strokeColor = self.strokeColor.CGColor;
disappearingLayer.fillColor = [UIColor clearColor].CGColor;
disappearingLayer.lineWidth = [self.strokeSize floatValue];
disappearingLayer.path = path.CGPath;
[self.layer addSublayer:disappearingLayer];
[fadeAnimation setValue:disappearingLayer forKey:@"parentLayer"];
[disappearingLayer addAnimation:fadeAnimation forKey:@"opacity"];
}
花了一些时间才摆脱了笔画中心令人讨厌的阴影。我确定这条路正在被填满。由于颜色的 alpha 小于 1,因此填充和描边一起作用以在路径的中心创建一个较暗的区域。将填充颜色设置为清除解决了这个问题。
关于ios - 慢慢淡出 UIBezierPath,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23414247/
我有两个 UIBezierPath,一个表示图像的多边形部分,另一个是要在其上绘制的路径。 我需要找到它们之间的交点,以便只有在这个交点区域内的点才会被着色。 UIBezierPath 中是否有一种方
我正在制作一个应用程序,允许用户用手指在屏幕上绘制不同的颜色。图纸是用 UIBezierPaths 绘制的,但我需要橡皮擦。我确实有一个橡皮擦,它只是一条以背景图像为颜色的路径,但这种方法会导致内存问
我想用 SceneKit 画一条贝塞尔曲线,并认为这会起作用: func drawCurvedLine() { let scene = SCNScene() let scnView =
我在设置为 iPhone (Retina 4-inch) 的模拟器中运行此代码 -(void)drawRect:(CGRect)rect { [[UIColor whiteColor]set]
我想绘制月亮,然后为月亮的阴影设置动画。但启动此代码后,我可以在动画线上看到一些故障: GIF: 为什么会发生这种情况? Playground 代码 here 更新1:此函数创建的两条路径具有不同的角
假设我们有一个 UIBezierPath...它的边界是完全正方形的...像这样: func getExponentPath(rotate180: Bool) -> UIBezierPath {
我想绘制月亮,然后为月亮的阴影设置动画。但启动此代码后,我可以在动画线上看到一些故障: GIF: 为什么会发生这种情况? Playground 代码 here 更新1:此函数创建的两条路径具有不同的角
假设我们有一个 UIBezierPath...它的边界是完全正方形的...像这样: func getExponentPath(rotate180: Bool) -> UIBezierPath {
我正在试验 UIBezierPath。我想做一个 GridView 。 NSInteger yAxisIncremental = 0; NSInteger xAxisIncremental = 0;
我需要使用bezeirPath绘制此形状: 我做了以下事情: 我创建了矩形路径。 然后我添加了五个圈子。 如下面的代码所示: let stickLayerBezeirPath = UIBezierPa
我将 Apple 文档阅读到 UIBezierPath目的。我是否正确理解它不支持相对路径? 我正在尝试将此 svg 路径转换为 UIBezierPath: // svg path m90 36c
我正在尝试制作一个球从用户画线反弹的游戏。绘制线的代码包含在下面并且可以正常工作,但是一旦球与它接触或玩家画一条新线,我将如何删除线? path = [UIBezierPath bezierPath]
我想画一条这样的路径: 这就是我写的: CGFloat radius = 50; UIBezierPath *path = [UIBezierPath bezierPath]; [path moveT
我在 View 中有一个 UIBezierPath 。我想在单击形状时显示警报,但实际发生的情况是,不仅在我单击形状时显示警报,而且当我单击 View 中的任意位置时也会显示警报。 如何更改此代码,以
我正在尝试从圆形到带圆角的正方形制作动画。据我了解,对于流畅的动画,两条路径的点数应该相等。所以我写了一个基于多条弧构建圆的函数: private func circleShape(segmentNu
对于横向和纵向模式,是否可以将元素重置到相同的%位置(距x = 0轴的距离)?如果是的话你能告诉我怎么做吗?另外,由于我是 Swift 的新手,如果您发现任何错误的代码错误,请DO通知我以便得到更好的
我正在尝试在叠加渲染器中使用 UIBezierPath 绘制一些线条。我收到错误 CGContextSetStrokeColorWithColor: invalid context 0x0 我怀疑这是
我想圆化我的右角,但只适用于左角 let path = UIBezierPath(roundedRect: view.bounds, byRoundingCorners: [UIRectCorner.
我想圆化我的右角,但只适用于左角 let path = UIBezierPath(roundedRect: view.bounds, byRoundingCorners: [UIRectCorner.
当我尝试平移路径,将其移动到原点 {0, 0} 时,生成的路径边界错误。 (或者,我的假设是错误的)。 例如该路径给出以下边界信息: let bezier = UIBezierPath(cgPath:
我是一名优秀的程序员,十分优秀!