gpt4 book ai didi

ios - 如何正确定位动画 CAShapeLayer

转载 作者:行者123 更新时间:2023-11-29 12:56:53 24 4
gpt4 key购买 nike

我正在为 CAShapeLayer 的结束笔画设置动画,但位置不正确,我无法弄清楚我做错了什么。框架是正确的,但是当我尝试调整位置时,我无法让它“填充” View 框架的宽度。我试图调整 _maskLine 的位置,但我的方法到目前为止都失败了。

View 的框架是:10, 10, 50, 100

查看图像(红色形状图层应“移动”超过 10 pts。

enter image description here

// layer setup in initWithFrame

_maskLine = [CAShapeLayer layer];

_maskLine.lineCap = kCALineCapButt;
_maskLine.fillColor = [[UIColor whiteColor] CGColor];
_maskLine.lineWidth = frame.size.width;
_maskLine.strokeEnd = 0.0;
_maskLine.frame = self.bounds;

[self.layer addSublayer:_maskLine];

self.clipsToBounds = YES;
self.layer.cornerRadius = 2.0f;


// animation method logic

UIBezierPath *progressline = [UIBezierPath bezierPath];

NSUInteger randomInt = arc4random() % (NSUInteger)self.maxMeterHeight;

self.meterHeight = (randomInt / self.maxMeterHeight);

[progressline moveToPoint:CGPointMake(CGRectGetMidX(self.frame), CGRectGetHeight(self.frame))];
[progressline addLineToPoint:CGPointMake(CGRectGetMidX(self.frame), (1 - self.meterHeight) * CGRectGetHeight(self.frame))];

[progressline setLineWidth:1.0];
[progressline setLineCapStyle:kCGLineCapSquare];

self.maskLine.path = progressline.CGPath;
self.maskLine.strokeColor = [UIColor redColor].CGColor;
self.maskLine.frame = self.bounds;

NSLog(@"mask frame: %@", NSStringFromCGRect(self.maskLine.frame));

CABasicAnimation *pathAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];

pathAnimation.duration = 0.35;
pathAnimation.autoreverses = YES;
pathAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
pathAnimation.fromValue = @0.0f;
pathAnimation.toValue = @1.0f;
pathAnimation.cumulative = YES;

[self.maskLine addAnimation:pathAnimation forKey:@"strokeEndAnimation"];

[CATransaction commit];

self.maskLine.strokeEnd = 1.0;

最佳答案

“修复”改变了这些行

[progressline moveToPoint:CGPointMake(CGRectGetMidX(self.frame), CGRectGetHeight(self.frame))];
[progressline addLineToPoint:CGPointMake(CGRectGetMidX(self.frame), (1 - self.meterHeight) * CGRectGetHeight(self.frame))];

到:

[progressline moveToPoint:CGPointMake(self.frame.size.width / 2, CGRectGetHeight(self.frame))];
[progressline addLineToPoint:CGPointMake(self.frame.size.width / 2, (1 - self.meterHeight) * CGRectGetHeight(self.frame))];

关于ios - 如何正确定位动画 CAShapeLayer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20847545/

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