gpt4 book ai didi

iphone - UIImageView 上的 "ripple effect"

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:37 27 4
gpt4 key购买 nike

我现在正尝试使用下面的代码制作 Ripple Animation 通过这段代码我每次都在相同的位置获得动画

CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:2.0f];
[animation setTimingFunction:UIViewAnimationCurveEaseInOut];
[animation setType:@"rippleEffect" ];
[imgView.layer addAnimation:animation forKey:NULL];

但我想在 imageview 上的触摸点上获得动画意味着动画将在用户点击 UIImageView 时出现

最佳答案

我认为下面的代码可以帮助你。

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:(UIViewAnimationTransition) 110 forView:view cache:NO];
[UIView commitAnimations];

还可以更好的访问this与您的帖子相似的帖子。

关于iphone - UIImageView 上的 "ripple effect",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12191697/

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