gpt4 book ai didi

ios - 如何将弹跳动画添加到 animateWithDuration?

转载 作者:可可西里 更新时间:2023-11-01 03:36:41 26 4
gpt4 key购买 nike

我在我的 ScrollView 委托(delegate)方法 scrollViewDidEndDragging 中执行了一个简单的动画。

看起来像这样:

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {

NSLog(@"finger was lifted");

[UIView animateWithDuration:1.0
animations:^{
self.homeLabel.frame = self.view.frame;
}];
}

在抬起手指后使用这个动画,我的 homeLabel 从顶部来,我想给它添加一个弹跳动画到标签,所以当它从顶部来时,它不会平稳着陆会有很好的弹跳……我该怎么做?谢谢

最佳答案

您可以使用usingSpringWithDamping 动画函数。

[UIView animateWithDuration:1.0 delay:0 usingSpringWithDamping:0.2 initialSpringVelocity:5.0 options:UIViewAnimationOptionCurveLinear animations:^{
self.homeLabel.frame = self.view.frame;
} completion:^(BOOL finished) {

}];

调整 Spring DampingInitial Spring Velocity 可以获得您想要的效果。

关于ios - 如何将弹跳动画添加到 animateWithDuration?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27927055/

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