gpt4 book ai didi

iphone - 基于 View 的应用程序中的水效果

转载 作者:行者123 更新时间:2023-12-03 19:44:22 25 4
gpt4 key购买 nike

我在 xcode 中使用基于 View 的应用程序,我想做一个效果:像这样的水效果 video .在这个视频中,这个人使用了 opengl es,我不知道没有它是否可行。

最佳答案

以下代码用于水滴效果,

-(IBAction)btnActionTapped:(id)sender{
CATransition *animation=[CATransition animation];
[animation setDelegate:self];
[animation setDuration:1.75];
[animation setTimingFunction:UIViewAnimationCurveEaseInOut];
[animation setType:@"rippleEffect"];

[animation setFillMode:kCAFillModeRemoved];
animation.endProgress=0.99;

imgV.hidden=YES;
imgV2.hidden=NO;


[animation setRemovedOnCompletion:NO];
[self.view.layer addAnimation:animation forKey:nil];
}

关于iphone - 基于 View 的应用程序中的水效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9377427/

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