gpt4 book ai didi

iphone - 具有水效果的 UIView

转载 作者:行者123 更新时间:2023-12-03 20:27:35 26 4
gpt4 key购买 nike

我正在制作一个基于 View 的应用程序,我希望为 View 提供水效果。请帮助我。

我正在使用以下代码

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

最佳答案

您可以设置查看WaterEffect通过点击按钮,我只是谷歌它,我得到了答案FROM

  • 首先您需要添加 QuartzCore.framework在您的项目中,从“目标”->“构建阶段”-> 将二进制文件与库链接起来,单击“+”按钮。

  • #import <QuartzCore/QuartzCore.h>在.m文件中

现在实现 BUTTON 的 IBAction

-(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;
[animation setRemovedOnCompletion:NO];
[self.view.layer addAnimation:animation forKey:nil];
}

关于iphone - 具有水效果的 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14377301/

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