gpt4 book ai didi

ios - (iOS) 如何使用 shapeLayer 为圆角矩形制作动画?

转载 作者:可可西里 更新时间:2023-11-01 04:36:21 27 4
gpt4 key购买 nike

我正在尝试为圆角矩形的宽度设置动画,问题是当从较大的宽度变为较窄的宽度时,动画会出现“像差缓和跳跃”。

代码如下:

shapeLayer = [CAShapeLayer layer];
shapeRect = CGRectMake(0.0f, 0.0f, 150.0f, 200.0f);
[shapeLayer setBounds:shapeRect];
[shapeLayer setPosition:CGPointMake(iniPosX, 80.0f)];
[shapeLayer setFillColor:[[UIColor blackColor] CGColor]];
[shapeLayer setStrokeColor:[[UIColor clearColor] CGColor]];
[shapeLayer setLineWidth:1.0f];
[shapeLayer setLineJoin:kCALineJoinRound];
[shapeLayer setOpacity:0.2];
path = [UIBezierPath bezierPathWithRoundedRect:shapeRect cornerRadius:15.0];
[shapeLayer setPath:path.CGPath];
[self.layer addSublayer:shapeLayer];

当我开始动画时:

- (void)adjustSelectorToPosAndSize:(float)posX andWidth:(float)width
{
shapeRect = CGRectMake(0.0f, 0.0f, width, 200.0f);
[shapeLayer setBounds:shapeRect];
[shapeLayer setPosition:CGPointMake(posX, 80.0f)];
path = [UIBezierPath bezierPathWithRoundedRect:shapeRect cornerRadius:15.0];
[shapeLayer setPath:path.CGPath];
}

我做错了什么?

最佳答案

如果您只将它用于圆角矩形,那么使用 CAShapeLayer 执行此操作对我来说似乎过于复杂。为什么不简单地将 CALayer 与 the cornerRadius properly 一起使用呢?设置?

使用 cornerRadius 设置的动画框架将工作正常。

myLayer = [CALayer layer];
shapeRect = CGRectMake(0.0f, 0.0f, 150.0f, 200.0f);
[myLayer setBounds:shapeRect];
[myLayer setPosition:CGPointMake(iniPosX, 80.0f)];
[myLayer setBackgroundColor:[[UIColor blackColor] CGColor]];
[myLayer setBorderColor:[[UIColor clearColor] CGColor]];
[myLayer setBorderWidth:1.0f];
[myLayer setOpacity:0.2];
[myLayer setCornerRadius:15.0];
[self.layer addSublayer:myLayer];

动画是通过简单地链接框架(而不是路径)来完成的

- (void)adjustSelectorToPosAndSize:(float)posX andWidth:(float)width
{
shapeRect = CGRectMake(0.0f, 0.0f, width, 200.0f);
[myLayer setBounds:shapeRect];
[myLayer setPosition:CGPointMake(posX, 80.0f)];
}

重要:

一些属性更改了名称,例如 fillColor 变成了 backgroundColorstrokeColorlineWidth 变成了 borderColorborderWidth

关于ios - (iOS) 如何使用 shapeLayer 为圆角矩形制作动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11099315/

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