gpt4 book ai didi

iphone - 创建自定义动画属性

转载 作者:IT王子 更新时间:2023-10-29 07:59:09 25 4
gpt4 key购买 nike

UIView 上,您可以更改动画背景颜色。在 UISlideView 上,您可以更改动画值。

你能为你自己的 UIView 子类添加一个自定义属性,以便它可以动画吗?

如果我的 UIView 中有一个 CGPath,那么我可以通过更改绘制路径的百分比来为其绘制动画。

我可以将那个动画封装到子类中吗?

即我有一个 UIView 和一个创建圆圈的 CGPath

如果没有圆圈,则表示 0%。如果圆圈是满的,则表示 100%。我可以通过更改路径绘制的百分比来绘制任何值。我还可以通过动画化 CGPath 的百分比并重绘路径来动画化更改(在 UIView 子类中)。

我可以在 UIView 上设置一些属性(即百分比),以便我可以将更改粘贴到 UIView animateWithDuration block 中,并动画显示百分比的变化路径?

我希望我已经解释了我想做好的事情。

基本上,我想做的就是...

[UIView animateWithDuration:1.0
animations:^{
myCircleView.percentage = 0.7;
}
completion:nil];

并且圆形路径根据给定的百分比进行动画处理。

最佳答案

如果您扩展 CALayer 并实现您的自定义

- (void) drawInContext:(CGContextRef) context

您可以通过覆盖 needsDisplayForKey(在您的自定义 CALayer 类中)来创建可动画属性,如下所示:

+ (BOOL) needsDisplayForKey:(NSString *) key {
if ([key isEqualToString:@"percentage"]) {
return YES;
}
return [super needsDisplayForKey:key];
}

当然,你还需要有一个名为percentage@property。从现在开始,您可以使用核心动画为百分比属性设置动画。我也没有使用 [UIView animateWithDuration...] 调用检查它是否有效。它可能会起作用。但这对我有用:

CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"percentage"];
animation.duration = 1.0;
animation.fromValue = [NSNumber numberWithDouble:0];
animation.toValue = [NSNumber numberWithDouble:100];

[myCustomLayer addAnimation:animation forKey:@"animatePercentage"];

哦,要将 yourCustomLayermyCircleView 一起使用,请执行以下操作:

[myCircleView.layer addSublayer:myCustomLayer];

关于iphone - 创建自定义动画属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14192816/

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