iOS仿AirPods弹出动画
本文实例为大家分享了iOS仿AirPods弹出动画的具体代码,供大家参考,具体内容如下
效果图
思路
在当前ViewController下Present另外一个AnimationViewController,在弹出的AnimationViewController中播放动画,弹出的时候原来的ViewController上有一个全屏覆盖的maskView,在弹出时,有一个渐变动画(页面渐黑),在AnimationViewController声明一个代理,在代理方法中实现收起的动画效果(dissmissController和maskView消失)
主要代码
HCAirPodsAnimationViewController*vc=[[HCAirPodsAnimationViewControlleralloc]init];
vc.delegate=self;
vc.modalPresentationStyle=UIModalPresentationOverCurrentContext;
[UIViewanimateWithDuration:0.2animations:^{
self.maskBgView.alpha=0.5;
}completion:nil];
[selfpresentViewController:vcanimated:YEScompletion:^{
[vc.animationViewplay];
}];
模态跳转的style有一个枚举值,在iOS13以前modalPresentationStyle的默认值为UIModalPresentationFullScreen,iOS13以后变成了UIModalPresentationPageSheet,在这里我们把style设置为UIModalPresentationOverCurrentContext弹出的这个控制器就会覆盖在原来的控制器之上
-(UIView*)maskBgView
{
if(!_maskBgView){
_maskBgView=[[UIViewalloc]initWithFrame:CGRectMake(0,0,[UIScreenmainScreen].bounds.size.width,[UIScreenmainScreen].bounds.size.height)];
_maskBgView.backgroundColor=[UIColorblackColor];
_maskBgView.alpha=0;
[self.viewaddSubview:_maskBgView];
}
return_maskBgView;
}
一个覆盖全屏的maskView采用懒加载的方式实现
-(void)initContentView
{
CGFloatcontainerW=SCREEN_WIDTH-20;
CGFloatcontainerH=containerW*0.9;
UIView*containerView=[[UIViewalloc]initWithFrame:CGRectMake(10,SCREEN_HEIGHT-containerH-10,containerW,containerH)];
containerView.layer.cornerRadius=20;
containerView.backgroundColor=[UIColorwhiteColor];
[self.viewaddSubview:containerView];
self.animationView=[[LOTAnimationViewalloc]initWithFrame:CGRectMake(70,70,containerW-140,containerH-140)];
[containerViewaddSubview:self.animationView];
self.animationView.animation=@"gift_animation";
self.animationView.loopAnimation=YES;
UIButton*confirmButton=[[UIButtonalloc]initWithFrame:CGRectMake(0,0,200,34)];
confirmButton.center=CGPointMake(self.animationView.center.x,containerH-44);
[confirmButtonsetTitle:@"Close"forState:UIControlStateNormal];
[confirmButtonsetTitleColor:[UIColorwhiteColor]forState:UIControlStateNormal];
[confirmButtonsetBackgroundColor:[UIColorblueColor]];
confirmButton.layer.cornerRadius=10;
[confirmButtonaddTarget:selfaction:@selector(onConfirmButtonClick)forControlEvents:UIControlEventTouchUpInside];
[containerViewaddSubview:confirmButton];
}
动画这里用到的是Lottie这个动画开源库(Airbnb),这个开源库主要的功能是可以将AfterEffects制作的动画通过插件导出为json格式的文件,然后通过这个开源库解析成动画。
-(void)onConfirmButtonClick
{
if([self.delegaterespondsToSelector:@selector(onAirPodsAnimationViewControllerConfirmButtonClick:)]){
[selfdismissViewControllerAnimated:YEScompletion:nil];
[self.delegateonAirPodsAnimationViewControllerConfirmButtonClick:self];
}
}
dissmiss当前的控制器,让viewController来实现这个代理方法,并且在代理方法中隐藏maskView
-(void)onAirPodsAnimationViewControllerConfirmButtonClick:(HCAirPodsAnimationViewController*)vc
{
[UIViewanimateWithDuration:0.2animations:^{
self.maskBgView.alpha=0.0;
}completion:nil];
}
项目地址:AirPodsAnimation
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。