gpt4 book ai didi

ios - 使用 CoreAnimation 变形

转载 作者:行者123 更新时间:2023-11-29 02:46:01 28 4
gpt4 key购买 nike

我正在创建一个导航按钮。当用户按下它时,按钮的图像应该改变,反射(reflect)它的状态(例如菜单打开/关闭)。我决定为此做一个 morphing-liek 动画。可以用CoreAnimation来实现吗?我需要使用什么动画类型?
我附上图片以清楚地说明我想要什么。此外,您可能会在“Pimp My Ride”节目中看到这些动画。
Morphing sample

最佳答案

您可以使用 animationImages UIImageView 的属性,像这样:

myImageView = [[UIImageView alloc] initWithFrame:myImageViewbounds];

//Add images which will be used for the animation using an array. These should exist in your project and bundle already.
myImageView.animationImages = @[[UIImage imageNamed:@"1.png"], [UIImage imageNamed:@"2.png"],[UIImage imageNamed:@"3.png"], [UIImage imageNamed:@"4.png"],[UIImage imageNamed:@"5.png"]];

//Set the duration of the entire animation
myImageView.animationDuration = 0.5;

//Set the repeat count. If you don't set that value, by default will be a loop (infinite)
myImageView.animationRepeatCount = 1;

//Start the animation
[myImageView startAnimating];

为了确保像过渡一样平滑变形,您可以查看 GPUImage它有很多很棒的模糊滤镜。理想情况下,您应该能够在两个图像动画之间包裹一个模糊动画来实现您想要的效果。

关于ios - 使用 CoreAnimation 变形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25117343/

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